Forum Moderators: coopster

Message Too Old, No Replies

validating form input

need to validate apostrophe

         

weddingm

7:18 am on Aug 4, 2013 (gmt 0)

10+ Year Member



Hello all,

I am having an issue where if there is an apostrophe in a field, the data is not being accepted into the database and errs out.

Sample:

$field1=mysql_real_escape_string(stripslashes(ucwords(strtolower($_POST['input']))));



insert into database
$insert=mysql_query("INSERT INTO $tablename values (\"\", '$field1', '$field2', '$field3', '$field4')")


Any help appreciated.

jatar_k

4:49 pm on Aug 4, 2013 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



is it field1 that is giving the error? what is the exact error?

I do find it much easier when I build my queries separate from the mysql_query call, like so

$q = "INSERT INTO $tablename values ('', '$field1', '$field2', '$field3', '$field4')";
echo $q;
$insert = mysql_query($q);

then I can echo the exact thing I am sending and paste that into the command line or phpmyadmin, or whatever you use for mysql, and look at the precise error.

you also should use only single quotes inside your qeury and double around, makes things easier

weddingm

5:25 pm on Aug 4, 2013 (gmt 0)

10+ Year Member



Thanks, the double/single worked.