View Single Post
Old 05-07-2009, 12:03 AM   #8 (permalink)
allworknoplay
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

Quote:
Originally Posted by Randy View Post
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());
allworknoplay is offline  
Reply With Quote