Hi,
I want to update a specific field in my database. My database has only one row with one field in it. How do I overwrite that field? This is what I have at this point, but its not working:
mysql_query(UPDATE Table SET column = "$item" WHERE column = "1")
or die('I cannot insert into the Database because: ' . mysql_error());
I have column=1 because I wanted to select the first field in the column.
Thanks in advance for your help!!