Jump to content

FORM/PHP/MySQL Help


inquisitive

Recommended Posts

Anyone see anything wrong with this????

 

$form1 = $_POST["textfield1"];

$form2 = $_POST["textfield2"];

$form3 = $_POST["textfield3"];

$form4 = $_POST["textfield4"];

$form5 = $_POST["textfield5"];

$form6 = $_POST["textfield6"];

$form7 = $_POST["textfield7"];

$form8 = $_POST["textfield8"];

$form9 = $_POST["textfield9"];

$form10 = $_POST["textfield10"];

$form11 = $_POST["textfield11"];

$form12 = $_POST["textfield12"];

 

$query = "INSERT INTO newsletter_signup VALUES ('$form1','$form2','$form3','$form4','$form5','$form6','$form7','$form8','$form9','$form10','$form11','$form12')");

$result = mysql_query($query) or die(mysql_error());

Link to comment
Share on other sites

You have an extra close bracket at the end of this line

 

$query = "INSERT INTO newsletter_signup VALUES ('$form1','$form2','$form3','$form4','$form5','$form6','$form7','$form8','$form9','$form10','$form11','$form12')");

 

should be

 

$query = "INSERT INTO newsletter_signup VALUES ('$form1','$form2','$form3','$form4','$form5','$form6','$form7','$form8','$form9','$form10','$form11','$form12');

 

Apart from that no.

Link to comment
Share on other sites

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.