Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a form that has 3 types of field:

  1. (2) text fields that submit to "tblCocktail"
  2. (4) select fields that are populated with values from "tblIngredient" and submit to "tblRecipe"
  3. (4) select fields with pre-set options that submit to "tblRecipe"

Form Code (There are 4x of each "selectingred" & "quantity" drop-downs):

<form method="POST" action="addcocktail.php" >
                    Cocktail Name: <input type="text" name="cocktailname" /> 
                    How To: <input type="text" name="howto" /> 
                    <br> 
                    <select id="selectingred1" name="selectingred1">
                      <?php
                      $sql = "SELECT ingredientID, name FROM tblIngredient ".
                      "ORDER BY name";

                      $rs = mysql_query($sql);

                      while($row = mysql_fetch_array($rs))
                      {
                        echo "<option value=\"".$row['ingredientID']."\">".$row['name']."</option>\n  ";
                      }
                      ?>
                    </select>
                    <select id="quantity1" name="quantity1">
                      <option></option>
                      <option>1</option>
                      <option>2</option>
                      <option>3</option>
                      <option>4</option>
                    </select>
                    <br>
<input type="submit" value="add" />
                </form>

addcocktail.php:

 <?php include("databasecon.php"); ?>

<?php
mysql_select_db("mwheywood", $con);

//insert cocktail details
$sql="INSERT INTO tblCocktail (name, howto)
VALUES
('$_POST[cocktailname]','$_POST[howto]')";

$sql2="INSERT INTO tblRecipe (ingredientID, quantity)
VALUES
('$_POST[selectingred1]','$_POST[quantity1]'),
('$_POST[selectingred2]','$_POST[quantity2]'),
('$_POST[selectingred3]','$_POST[quantity3]'),
('$_POST[selectingred4]','$_POST[quantity4]')";



if (!mysql_query($sql,$con))
  {
  die('Error: you fail at life' . mysql_error());
  }
echo "cocktail added";

if (!mysql_query($sql2,$con))
  {
  die('Error: you fail at life' . mysql_error());
  }
echo "ingredients added";

mysql_close($con);

?>

This is currently only adding the "selectingred4" and "quantity4" values into "tblRecipe". It's ignoring the two inserts for the text boxes, and the first 3 select box entries.

My other problem was also that Im grabbing the "ingredientID" and "name" from the php in my form, but when I submit the form it's not submitting "ingredientID" into "tblRecipe" either.

-any help would be appreciated -Matt

share|improve this question

4 Answers

up vote 1 down vote accepted

You keep overwriting your SQL query and only the last one actually exists to be executed. Here's a fixed version of your code:

<?php include("databasecon.php"); ?>

<?php
mysql_select_db("mwheywood", $con);

//insert cocktail details
$sql="INSERT INTO tblCocktail (name, howto)
VALUES
('$_POST[cocktailname]','$_POST[howto]')";

if (!mysql_query($sql,$con))
{
die('Error: you fail at life' . mysql_error());
}

//insert recipe details
$sql="INSERT INTO tblRecipe (ingredientID, quantity)
VALUES
('$_POST[selectingred1]','$_POST[quantity1]')";

$sql="INSERT INTO tblRecipe (ingredientID, quantity)
VALUES
('$_POST[selectingred2]','$_POST[quantity2]')";

$sql="INSERT INTO tblRecipe (ingredientID, quantity)
VALUES
('$_POST[selectingred3]','$_POST[quantity3]')";

$sql="INSERT INTO tblRecipe (ingredientID, quantity)
VALUES
('$_POST[selectingred4]','$_POST[quantity4]')";
if (!mysql_query($sql,$con))
  {
  die('Error: you fail at life' . mysql_error());
  }
echo "cocktail added";

mysql_close($con);

?>

Furthermore, you can combine the last four queries into one query:

<?php include("databasecon.php"); ?>

<?php
mysql_select_db("mwheywood", $con);

//insert cocktail details
$sql="INSERT INTO tblCocktail (name, howto)
VALUES
('$_POST[cocktailname]','$_POST[howto]')";

if (!mysql_query($sql,$con))
{
die('Error: you fail at life' . mysql_error());
}

//insert recipe details
$sql="INSERT INTO tblRecipe (ingredientID, quantity)
VALUES
('$_POST[selectingred1]','$_POST[quantity1]'),
('$_POST[selectingred2]','$_POST[quantity2]'),
('$_POST[selectingred3]','$_POST[quantity3]'),
('$_POST[selectingred4]','$_POST[quantity4]')";
if (!mysql_query($sql,$con))
  {
  die('Error: you fail at life' . mysql_error());
  }
echo "cocktail added";

mysql_close($con);

?>
share|improve this answer
it's working now, I've just got one query I'm still unsure about how to do. The "name" and "howto" are submitted to my "tblCocktail", and a "cocktailID" is generated; I want this ID to also be put into each of the "RecipeID" entries that are created from the drop down boxes (upto 4 for each cocktail) so that they are linked. – MattHeywood May 2 '12 at 20:24
(e.g. the first ingredient entry in tblRecipe): recipeID: 1 , cocktailID: 0, ingredientID: 5, quantity: 2 .... The cocktailID needs to be grabbed from the first POST entry to tblCocktail. – MattHeywood May 2 '12 at 20:25
You may want to pose this as a separate question so you can show specific code to it and let others help you as well – John Conde May 2 '12 at 20:30

You assign an INSERT statement to $sql then you throw it away and assign another statement, and another, and only actually do the last one.

share|improve this answer

well you would have to be doing a mysql_query after every $sql snippet because you are redeclaring the $sql variable everytime you set it equal to something. you can concatenate them all together and run them all at once by doing "$sql.=" and do several queries in one php function

share|improve this answer

You simply keep reassigning different values sequentially to $sql, and so thus only the last one sticks. All the others are overwritten everytime you fall through the code.

You need to loop through the data, executing the query on each pass with new data, or build a query with proper syntax.

I would also reorganize how the form is structured to allow for variable answers. Also maybe how the tables are set up. Ingredients have IDs, a description, a value, a cost, maybe where they can be found and some notes. Recipes have a rating, ID's, a description and instructions. Recipe_xref has a recipe_id field, an ingredient_id field, and a quantity field.

This gives to a very rich and dynamic data structure that expands as you need it to. From there, it is a matter of building the queries to pull the data as you need it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.