Jump to content

[SOLVED] Using a form to insert data into a database


hansman

Recommended Posts

Hello, i currently have a for with a list of radio buttons. I would like the user to select once unique button, and that will determine what table the data is entered into.

 

My radio buttons look like this:

 

 <input type="radio" name="Type" value="Crawling_Insects" id="Crawling_Insects" /> Crawling Insects</label>

 

So, for this radio button it will submit date to Crawling_Insects table. Now on the submit to database page i do this.

 

$Type=$_POST['Type'];

...

$sql="INSERT INTO 'Type'(data form previous page)VALUES(Variables)

 

Any idea on whats wrong here?

 

do what wildteen said with the echo command, but you may also need to encapsulate the table name.

 

Try:

 

$sql="INSERT INTO `$type` (data form previous page)VALUES(Variables)";
[\code]

and make sure the sql in the 'data from previous page' and 'variables' is correct.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.