I'm still trying to get the basics for PHP/mySQL down. I have a query which adds a row of data to a table. But if there is already a row of data in the table, then no more new rows get added. Here is my query:
mysql_query("INSERT INTO table (attribute1,attribute2,attribute3,attribute4,attribute5) VALUES ('$var1','$var2','$var3','$var4','var5')");
How come it won't add any more rows if one already exists?
Thanks.