This might sound a realy stupid question but i cant get my head around it! Im tryin to set ALL the values for the colum logedin to 0, im ussing the bellow script but it not working, can some one point me in the right direction, thanks!
Code:
<?php
include 'config.php';
$do = mysql_query("UPDATE Finnal_Users SET Logedin = 0 WHERE username='username' LIMIT 1") or die(mysql_error());
mysql_close($l);
?>