Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Donovan
Client



Joined: Oct 07, 2003
Posts: 735
Location: Ohio

PostPosted: Sat Jan 14, 2006 1:23 pm Reply with quote

Here is what I am trying to do.

Code:
//Insert the values into the correct database with the right fields

   $result = $db->sql_query ("INSERT INTO " . $prefix . "_milpacs_members (uniqueid, u_name, uniform, rank_id, flag, location, status, p_mos, unit_id,  reports, position, weapon_id, enlistment_dt, icq, bio)".
      "VALUES ('NULL','$soldierName','$uniform', $rank_id, '$flag', '$location', '$status', '$p_mos', $unit_id, '$reports', '$position', $weapon_id, '$enlistment_dt', '$icq', '$bio')");

   if (!$result) {
       echo("<p>Error adding Soldier!" . mysql_error() . "</p>");
   }
   else {
      $result = $db->sql_query($sql);
      $id = $db->sql_query ("SELECT max(uniqueid) FROM " . $prefix . "_milpacs_members");
      Header("Location: /milpacs.php?aop=editsoldier&uniqueid=$id");
      
   }


I add the latest record in this table then I want the page to direct to the editsoldier page to add other information. I need to use the id assigned to this record I just added. This doesn't work right now. My url says

Quote:
?aop=editsoldier&uniqueid=Resource%20id%20#167


Any assistance is appreciated.
 
View user's profile Send private message Visit poster's website ICQ Number
montego
Site Admin



Joined: Aug 29, 2004
Posts: 9457
Location: Arizona

PostPosted: Sat Jan 14, 2006 2:09 pm Reply with quote

Donovan, this has been addressed before by Raven, I think in the mySQL Forum, but cannot remember exactly. He gives a sample SQL statement. However, what happens if you change it to this:


$row = $db->sql_query ("SELECT max(uniqueid) as uniqueid FROM " . $prefix . "_milpacs_members");
$id = $row['uniqueid'];

_________________
Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! 
View user's profile Send private message Visit poster's website
Donovan







PostPosted: Sat Jan 14, 2006 5:55 pm Reply with quote

What I did was:

Code:
// Grab ID 

      $id = mysql_insert_id();            
      Header("Location: /milpacs.php?aop=editsoldier&id=".$id);


Works fine.
 
montego







PostPosted: Sat Jan 14, 2006 7:32 pm Reply with quote

Donovan, very cool! Thank you for sharing that one. I had never used that before.
 
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Sat Jan 14, 2006 7:37 pm Reply with quote

The mysql_insert_id(); is the prefered/best way. The other code was being used, if I remember right, for a field that was not an auto-increment field and therefore the mysql_insert_id(); would not work.
 
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©