Sometimes the encrypted string contains quotes ( ' or " ) and this causes an error when passing an insert string to a mysql query. Has anyone solved this problem?
thanks,
losang
use the php function addslashes() on any data going into the mysql database that might contain anything besides numbers & letters.
http://www.php.net/manual/en/function.addslashes.php
thanks for the info.