Hi,
I'm trying to run the folowing query, without success. Evertime the "?" in the query is replaced (quoted) by the "'" character and a get a wrong record value in database :
PHP Code:
$sql = "UPDATE table SET col = 'Are you fine?' WHERE 1";
$db -> query( $sql );
Col contains : Are you fine '
Any idea ???