|
Posted by frizzle on 11/02/33 11:31
Hmm,
somehow i can't get it to work correctly:
I tested inserting the following text:
'"\ (single quote, double quote, backslash)
Via PHP:
$new_var = mysql_real_escape_string($_POST['var']);
$put_info = mysql_query("INSERT INTO `test` ( `id` , `text` )
VALUES ('', '".$new_var."');");
And via phpMyAdmin.
If i view the first data via phpMyAdmin, i see the following:
\'\"\\
If i view the text inserted via phpMyAdmin, i see
'"\ (the way it should be)
What am i still missing? :s
Greetings Frizzle.
[Back to original message]
|