954,597 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Problem displaying sessions

I have literally been banging my head on my keyboard out of frustration. I'm trying to display PHP sessions as values in my php form, but it's not going so well. here's what I have:

<?php session_start();?><html>
<head>
<title>Create An Event</title>
<style>
label {float: left; width: 100px;}
input[type=text],textarea {width: 210px;}
</style>
</head>
<body>
<form enctype="multipart/form-data" action="" method="post">
	<p><label for="name">Event Name</label><input type="text" name="name" value="<?php echo $_SESSION['name'];?>" /></p>
	<p><label for="description">Event Description</label><textarea name="description"><?php echo $_SESSION['description'];?></textarea></p>
	<p><label for="location">Location</label><input type="text" name="location" value="<?php echo $_SESSION['where'];?>"></input></p>
	<p><label for="">Start Time</label><input type="text" name="start_time" value="<?php echo $_SESSION['begin'];?>"></input></p>
	<p><label for="end_time">End Time</label><input type="text" name="end_time" value="<?php echo $_SESSION['end'];?>"></input></p>
	<p><input type="submit" value="Create Event" /></p>
</form>
</body>
</html>


php.ini is setup correctly and sessions are showing when I run

<?php session_start(); 
 Print_r ($_SESSION);
 ?>


Help would be appreciated thanks :D

waveydaveywaves
Newbie Poster
15 posts since Jan 2011
Reputation Points: 10
Solved Threads: 0
 

Try dumping $_SESSION just before the tag. Make sure $_SESSION array has data when comes to this page.

...
...
<body>
   <?php
       var_dump($_SESSION);
   ?>
   <form enctype="multipart/form-data" action="" method="post">
   ...
...
niranga
Junior Poster
163 posts since Apr 2010
Reputation Points: 21
Solved Threads: 21
 

Nope, Nothing dumping. I just don't get it.

waveydaveywaves
Newbie Poster
15 posts since Jan 2011
Reputation Points: 10
Solved Threads: 0
 

So that means you haven't set any session variables. Isn't it?

niranga
Junior Poster
163 posts since Apr 2010
Reputation Points: 21
Solved Threads: 21
 

Have you got cookies disabled?

diafol
Rhod Gilbert Fan (ardav)
Moderator
7,796 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: