Re: Strange Error When Editing or Adding Pages - With HTML in Pages

  •  09-18-2009, 1:46 PM

    Re: Strange Error When Editing or Adding Pages - With HTML in Pages

    I resolved the problem. It was not inserting data into the MySQL db because of apostrophes and other special characters. I used
     
    $pagetext = mysql_real_escape_string ($_POST['PageText']);
     
    to fix the problem
View Complete Thread