this is th code:
all i want to do is use str_replace to replace "</td>" with " </td>" on fullpage='$fullpage[$i]'
Thanks for help.
PHP:
<td><textarea name="fullpage[]" cols="140" rows="16" id="fullpage"><?=stripslashes ($rows['fullpage']) ?></textarea></td>
PHP:
<?phpif($Submit){
for($i=0;$i<$count;$i++){
$sql1="UPDATE $tbl_name SET title='$title[$i]', fullpage='$fullpage[$i]' WHERE id='$id[$i]'";
$result1=mysql_query($sql1);
}
}
if($result1){
echo "<meta http-equiv=\"refresh\" content=\"0\">";
}
mysql_close();?>
all i want to do is use str_replace to replace "</td>" with " </td>" on fullpage='$fullpage[$i]'
Thanks for help.
Last edited:







