Thanks man, that fixed that problem but yet another one arises. I am now getting the following error.
Unknown column 'N' in 'field list' in query:INSERT INTO Members VALUES ('','test','tester','01/01/2001','testing',N,T,'0','0','','0')
I see what the problem is, but I'm not sure how to fix it. My radio buttons for the spots where the value is N and T are not putting the values in single quotes like everthing else. Any suggestions.
Here's the code from the html
<input type="radio" name="Capital" value="Y" id="Capital_0" />
Yes</label>
<input type="radio" name="Capital" value="N" id="Capital_1" />
<label>
No</label>
And here's the code from the php
$query = "INSERT INTO Members VALUES ('','$owner','$char','$join','$title',$cap,$corp,'$fleet','$kill','$user','$api')";
mysql_query($query) or die(mysql_error()." in query:". htmlspecialchars($query));