05-07-2009, 12:03 AM
|
#8 (permalink)
|
|
The Gregarious
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
|
Quote:
Originally Posted by Randy
column is 100% unique so, but I did that:
PHP Code:
$update = mysql_query("UPDATE settings SET `sitename` = '$websitename' WHERE `build` = '1.0a'") or die(mysql_error());
and still nothing, i used build because its the "build" version of the script.
I am using FF3 I believe, not sure on exact version number as it is a work computer.
|
Try this...
$update = mysql_query("UPDATE settings SET `sitename` = '".$websitename."' WHERE `build` = '1.0a'") or die(mysql_error());
|
|
|
|