Jump to content

Insert into two tables


mrt003003

Recommended Posts

I have a form that inserts a tables records into my database. Ive tried to modify it so it will insert into two tables but it only seems to insert into one table and not the other.  I made a query that counts the rows of the 2nd table and +1, which is then suppose to be inserted.

 

<?php $editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  $insertSQL = sprintf("INSERT INTO fleet (FleetName) VALUES (%s)",
                       GetSQLValueString($_POST['ffleetname'], "text"));
                      
  $insertSQL = sprintf("INSERT INTO ships (ShipName, FleetName, PlayerName, Image, Image2, Cost, HealthA, HealthB, MaxHealthA, MaxHealthB, `Class`, PlanetName) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['shipname'], "text"),
                       GetSQLValueString($_POST['fleetname'], "text"),
                       GetSQLValueString($_POST['playername'], "text"),
                       GetSQLValueString($_POST['image1'], "text"),
                       GetSQLValueString($_POST['image2'], "text"),
                       GetSQLValueString($_POST['cost'], "int"),
                       GetSQLValueString($_POST['ha'], "int"),
                       GetSQLValueString($_POST['hb'], "int"),
                       GetSQLValueString($_POST['mha'], "int"),
                       GetSQLValueString($_POST['mhb'], "int"),
                       GetSQLValueString($_POST['class'], "int"),
                       GetSQLValueString($_POST['select'], "text"));

  mysql_select_db($database_swb, $swb);
  $Result1 = mysql_query($insertSQL, $swb) or die(mysql_error());

  $insertGoTo = "ship.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  header(sprintf("Location: %s", $insertGoTo));
}
$colname_Fleetcount = "-1";
if (isset($_GET['recordID'])) {
  $colname_Fleetcount = (get_magic_quotes_gpc()) ? $_GET['recordID'] : addslashes($_GET['recordID']);
}
mysql_select_db($database_swb, $swb);
$query_Fleetcount = sprintf("SELECT * FROM fleet");
$Fleetcount = mysql_query($query_Fleetcount, $swb) or die(mysql_error());
$row_Fleetcount = mysql_fetch_assoc($Fleetcount);
$totalRows_Fleetcount = mysql_num_rows($Fleetcount); ?>

<input name="image1" type="hidden" value="<?php echo $row_Ships['Image']; ?>" />
                  <input name="image2" type="hidden" value="<?php echo $row_Ships['Image2']; ?>" />
                  <input name="cost" type="hidden" value="<?php echo $row_Ships['Cost']; ?>" />
                  <input name="ha" type="hidden" value="<?php echo $row_Ships['HealthA']; ?>" />

        [b]          <input name="ffleetname" type="hidden" value="<?php echo $totalRows_Fleetcount = mysql_num_rows($Fleetcount) + 1;?>" />
                  <input name="fleetname" type="hidden" value="<?php echo $totalRows_Fleetcount = mysql_num_rows($Fleetcount) + 1;?>" />[/b]

                  <input name="hb" type="hidden" value="<?php echo $row_Ships['HealthB']; ?>" />
                  <input name="mha" type="hidden" value="<?php echo $row_Ships['MaxHealthA']; ?>" />
                  <input name="mhb" type="hidden" value="<?php echo $row_Ships['MaxHealthB']; ?>" />
                  <input name="class" type="hidden" value="<?php echo $row_Ships['Class']; ?>" />
                  <input name="playername" type="hidden" value="<?php echo $_SESSION['MM_Username']; ?>" />
                  <input name="shipname" type="hidden" value="<?php echo $row_Ships['ShipName']; ?>" />
<input type="submit" name="Submit" value="Submit" />
<input type="hidden" name="MM_insert" value="form1">
    </form>

 

 

Any ideas?

 

Thanks

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.