I am wanting to move data from one column to another in a MySQL table.
Here is my code:
$sDate = date("d-m-Y H:i:s");
mysql_query( " UPDATE users
SET
logintimelast = logintime
AND
logintime = '$sDate'");
However this does not update either column?