I have a startpoke table, I need to add the name of the pokemon to the name_poke column, in the registration template it looks like this:
<input name='startpoke' type='radio' value='Bulbasaur' class='checkbox' > And from the server side:
mysql_query('INSERT INTO startpoke SET name_poke='.$_GET['startpoke']); tell me what is the error?