Jump to content

session value can't be store


davids701124

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.