I entered a, b, c .... j, k, l on each of the edit boxes in the form. I received the following back:
You asked me to add this to the roster:
INSERT into roster values ('0', 'a', 'b', 'c', 'd', 'e, 'f', 'g', 'h', 'i', 'j', 'k', 'l')
Omg, something went wrong. The data is not in the roster. Please let MereCatfish know about this. In the Helljumpers forum, post the data you were trying to add so the problem can be found. Thanks.
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'f', 'g', 'h', 'i', 'j', 'k', 'l')' at line 1
Notice above, that '0' is the first column. You are representing that as a character, not an integer. If the first column is an integer, this is incorrect. Take away the single quotes.
Make sure you got a connection:
$Link = mysql_connect ($Host, $User, $Password);
if ($Link == FALSE)
echo "Could not connect <br />";
Make sure your database is getting selected:
if (mysql_select_db($DBname, $Link) == FALSE)
echo "Could not select database";
Need to see your database table schema. Please post it.