05-07-2009, 12:07 AM
|
#10 (permalink)
|
|
The Acquainted
Join Date: May 2007
Location: Your G/F's Closet
Posts: 114
Thanks: 7
|
Did not work :( all I can think of is that perhaps its being blocked because i am running some lines at the top of the page to retrieve the data as its required for the general purpose of the website such as getting the title to display and other items.
Code At Top:
PHP Code:
$settingsquery = mysql_query("SELECT * FROM settings") or die(mysql_error());
$setingsresult = mysql_fetch_array( $settingsquery );
$sitename = $setingsresult['sitename'];
$siteurl = $setingsresult['siteurl'];
$build = $setingsresult['build'];
that works just find just not this update issue.
__________________
Real Programmers always confuse Christmas and Halloween because Oct31 == Dec25 - Andrew Rutherford
|
|
|