davids701124 Posted November 3, 2009 Share Posted November 3, 2009 I made a form with session method to store particular's id when user is submit new event. however, according to my code, everything was store into the table correctly, except $_session[baby_id], can anyone help out?? <?php //set up session! session_start(); //connect to db require( "dbconnect.php" ); //check seesion is set or not if(isset($_SESSION['username'])){ echo "Welcome, ".$_SESSION['username'].". "; echo "Your baby_id is ". $_SESSION['baby_id'].".<BR>"; } else { echo "please login!"; } $_SESSION['baby_id'] = $baby_id; //insert entry $sql="INSERT INTO post (post_title, post_des, photo1_url, photo2_url, photo3_url, baby_id) VALUES ('$_POST[title]','$_POST[des]','$_POST[p1]','$_POST[p2]','$_POST[p3]','$baby_id')"; if (!mysql_query($sql)) { die('Error: ' . mysql_error()); } echo "the entry is added"; ?> Link to comment https://forums.phpfreaks.com/topic/180052-session-value-cant-be-store/ Share on other sites More sharing options...
mikesta707 Posted November 3, 2009 Share Posted November 3, 2009 where is $baby_id defined Link to comment https://forums.phpfreaks.com/topic/180052-session-value-cant-be-store/#findComment-949884 Share on other sites More sharing options...
davids701124 Posted November 3, 2009 Author Share Posted November 3, 2009 where is $baby_id defined $baby_id is used to replace $_SESSION[baby_id], it is a id number auto-increasing after user registered. Link to comment https://forums.phpfreaks.com/topic/180052-session-value-cant-be-store/#findComment-949899 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.