Hi guys
I'm fairly new to the forums and PHP, and am having some problems with slashes on the 'Add Hyperlink' button on CKEditor.
Please let know if this is the wrong forum for this post.
I currently have some simple code that lets me add news (blog style) to a mysql database.
if(isset($_POST['submit3']))
{
$text1 = $_POST['text1'];
$text1 = mysql_real_escape_string($text1);
if(!$text1)
{
echo "<center>One or more fields were not completed!<br /><br />Redirecting Back</center>";
echo "<meta http-equiv=Refresh content=2;url=newsadd.php>";
exit;
}
else
{
$result = mysql_query("INSERT INTO news (title, dtime, text1)
VALUES ('$title',NOW(),'$text1')",$connect);
echo "<center>Added Successfully!<br><br />Redirecting Back</center>";
echo "<meta http-equiv=Refresh content=2;url=index.php>";
}
}
Now please correct me if I'm wrong but I thought the mysql_real_escape_string was meant to remove slashes and make the content safe for insertion. It has been working fine up until this point, where I have now added the CKEditor wysiwyg editor (so as to have formatting options) instead of just using plain text fields.
But using this editor adds slashes to my links on insertion to the DB.
If I insert
$text1 = stripslashes($text1);
to the above code as well as mysql_real_escape_string it inserts the link into DB properly but ads an 'rn' to after every <p> tag in the code inserted in DB.
I would have thought that cause the code coming from CKEditor was clean (by checking the source code of what I've written in the editor prior to submitting) that my submission to database would also be clean because of mysql_real_escape_string.
Can you use both mysql_real_escape_string and stripslashes together or is this a no-no.
Any help with this would be much appreciated