Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can set session variables and use them on another page. However when i try to use a simple contactform with a username and email address and try to store them into session variables, they don't show up on other pages. There must be something basic i'm missing.

Here's the form:

<?php
session_start();
$submit = $_POST["submit"];
if($submit){setSessionVars();}
function setSessionVars() {
    $_SESSION['name'] = $_POST['name'];
    $_SESSION['email'] = $_POST['email'];
    header('Location: session.php');
}
?>

<html>
<body>
  <form action="session.php" method"post">
    <input name="name" type="text" value="Name" size="11" /><br />
    <input name="email" type="text" value="Email" size="11" /><br /><br />
    <input name="submit" type="submit" value="Submit" size="11" />
  </form>
</body>
</html>

And this is session.php:

<?php
session_start();
echo $_SESSION['name'];
echo $_POST['name'];
?>

Also

header('Location: session.php');

is not working. Any ideas?

share|improve this question
1  
When you submit the form to session.php, do you get any values? It doesn't look like you are calling setSessionVars() on that page. – seveneves May 12 '12 at 16:45

2 Answers

up vote 3 down vote accepted

At a glance, I see one immediate problem that will keep the form from posting.

<form action="session.php" method"post">

You need an "=" sign between method and "post".

Changing that alone will give you the "t" in session.php.

share|improve this answer
Briliant! That did it. Thanks a lot. – Ben May 12 '12 at 16:58

You post the form to session.php:

<form action="session.php" method"post">

I'd change it to:

<form method="post">

That way, the page posts to itself. Then it can register the session variables and redirect the user to session.php.

Edit: also, you forgot the = sign in method"post".

share|improve this answer
Thanks. I tried that, but header('Location: session.php'); doesn't seem to work. – Ben May 12 '12 at 16:46
Edited my answer, you wrote method"post" instead of method="post". :) – TaZ May 12 '12 at 16:47
Misread your post. You're right too! – Ben May 12 '12 at 16:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.