I'm trying to overwrite data in a MySQL table called "login." I want to replace a field called "website" with the variable $cleanURL. The code below is what I have tried to use, but the field just ends up blank / empty after I try to use it.
Any idea why this is happening?
mysql_query("Update login
SET website = $cleanURL
WHERE loginid = '$uid'");