this may be a simple easy answer, but I am trying to perform an update on one column in an entire table. I am trying to do this:
<?php
session_start();
include 'db_config.php';
mysql_select_db(iceregen_MStudio);
$query = "UPDATE users SET online='OFFLINE' WHERE UserID='*'";
?>
But, it doesnt work. What is the proper syntax to update every record for that specific column?
Thanks;
Ice