Hi.
I am having a hard time with a very simple task.
the text is not being returned back to $article after the attempt to go through this function.
<?php
$article = char_replace($article);
function char_replace($id){
$id = nl2br($id);
$id = str_replace("&", "&", $id);
$id = str_replace("<", "<", $id);
$id = str_replace(">", ">", $id);
$id = str_replace("\"", """, $id);
}
?>
Please help.
Thanks.