Jump to content

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

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.