can someone teach me how the str_replace function work... please give me some example... like:
$t = "<table><tr><td>hello...</td></tr><table>"
and change it to ==> $new_t = "<table><tr><td width=15>hello..</td></tr><table>"
Thank you...
$t = "<table><tr><td>hello...</td></tr><table>"; $t = str_replace("<td>", "<td width=15>", $t);
Thanks...