Help me with this one please...
can you do this?
code:--------------------------------------------------------------------------------
$number = 0;
while(something I'll figure out later )
{
$number++;
$replace = ereg_replace("hello", "hello$number", $row[0]);
}
So that it will replace hello with hello0, hello1, hello2 and so as it goes around in the loop.
It seems that ereg_replace doesn't take arrays and translate them