ok so what i have going right now is a little system that takes a value of %address% and turns it into what is stored on the database. and i am using a str_replace
example (note there are more in the array)
$searchArray = array("%address%");
$replaceArray = array($address);
$content = str_replace($searchArray, $replaceArray, $content);
my problem is that i had oh maybe about 50 values that get replaced and when i added up to or more than i believe 100 the values dont get replaced.
now my question is what is more powerful str or preg_replace for a big project like this. or do you think it has to do with the array can only hold so much info.
thanks in advance