View Single Post
  #7 (permalink)  
Old 02-04-07, 11:12 AM
stormshadow's Avatar
stormshadow stormshadow is offline
Coding Addict
 
Join Date: Mar 2005
Posts: 355
Thanks: 0
Thanked 0 Times in 0 Posts
also, i find it that

sometimes in my code, the output changes but sometimes this wont word:
PHP Code:

 $sql "UPDATE $table_name set free_text= '$free_text', awards_text= '$awards_text' WHERE id = '$id2'"
and you need to do this:
PHP Code:

 $sql "UPDATE `$table_name` set free_text= '$free_text', awards_text= '$awards_text' WHERE id = '$id2'"
but like i said my output usually varies
__________________
Lost-On-Earth.net - *BETA* Text Based RPG
LiquidSqueeze.com - *Under Development* Scripts, Articles, Tutorials. Help
Reply With Quote