$mystring = $_SERVER[QUERY_STRING];
$findme = "'";
$pos = strpos($mystring, $findme);
the string "'" was not found
i guess my question is more simple...
how do i print an apostrophe?
because echo "'"
or echo '\''
prints "'" or \'
the word "isn't"
for example,
i want to check if there is an apostrophe in it...
thanks