Jump to content

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?

 

You might want to use the following instead.

$sql = 'INSERT INTO `'.$type.'`(data form previous page)VALUES(Variables)';

 

Before using $sql in mysql_query, echo $sql to see if it is being populated properly.

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.