I'm having troubles figuring out the following....
$SQLUpdate = "UPDATE Admin SET" ." Admin.password = '".$password
."' WHERE Admin.pk_admin_id = ".$admin_id;
echo $SQLUpdate;
when I echo this string $SQLupdate i get the following
UPDATE Admin SET Admin.password = 'biol200g\'!' WHERE Admin.pk_admin_id = 5
BUUUUUUT when I perform this update, the odd character (') in
biol200g\'! appears without the backslash in the database!
In the database it simply looks like this: biol200g'! which is horribly incorrect because it should be biol200g\'!
please help>> J.