Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the simplest form possible and all I want to do is echo whatever is written in text box.

HTML:

<form action="" method="post">
  <input type="text" name="firstname">
  <input type="submit" name="submit" value="Submit">
</form>

PHP:

if(isset($_POST['submit'])){
  $test = $_POST['firstname'];
  echo $test;
}

The problem is it's not working on my server (it works on another server). Does anyone has an idea what could be wrong? There are other forms on the server and are working fine.

share|improve this question
4  
I'd always recommend that the action attribute had a value... – ChrisW Jan 25 '12 at 12:07
3  
What do you get if you var_dump($_POST)? And come to that, var_dump($_REQUEST) – DaveRandom Jan 25 '12 at 12:08
What version of PHP is your server running? – Pekka 웃 Jan 25 '12 at 12:08
in action attribute you have to write like eg "test.php" or "#".try this – User25 Jan 25 '12 at 12:10
1  
Have you tried this : if($_SERVER['REQUEST_METHOD'] == "POST"){ – Frankline Jan 25 '12 at 13:36
show 8 more comments

6 Answers

A few thing you could do:

  1. Make sure that the "action" attribute on your form leads to the correct destination.
  2. Try using $_REQUEST[] instead of $_POST, see if there is any change.
  3. [Optional] Try including both a 'name' and an 'id' attribute e.g.

    <input type="text" name="firstname" id="firstname">
    

  4. If you are in a Linux environment, check that you have both Read/Write permissions to the file.

In addition, this link might also help.

EDIT:

You could also substitute if(isset($_POST['submit'])){ with this: if($_SERVER['REQUEST_METHOD'] == "POST"){ . This is always the best way of checking whether or not a form has been submitted

share|improve this answer
2  
You don't need the id. – PiTheNumber Jan 25 '12 at 12:26
Thanks, I already tried pretty much everything from that link. No success. – belovah Jan 25 '12 at 12:29
Tried #4. Still the same. – belovah Jan 25 '12 at 13:22
Have you tried this : if($_SERVER['REQUEST_METHOD'] == "POST"){ – Frankline Jan 25 '12 at 13:35

There is nothing wrong with your code. The problem is not visible form here.

  1. Check if after the submit, the script is called at all.

  2. Have a look at what is submitted: var_dump($_REQUEST)

share|improve this answer

try doing var_dump($_GLOBALS).

A potential cause could be that there is a script running before yours which unsets the global variables. Such as:

unset($_REQUEST);

or even.

unset($GLOBALS);

This could be done via the auto_prepend_file option in the php.ini configuration.

share|improve this answer

Instead of using $_POST, use $_REQUEST:

HTML:

<form action="" method="post">
  <input type="text" name="firstname">
  <input type="submit" name="submit" value="Submit">
</form>

PHP:

if(isset($_REQUEST['submit'])){
  $test = $_REQUEST['firstname'];
  echo $test;
}
share|improve this answer

I also had this problem. The error was in the htaccess. If you have a rewrite rule that affects the action url, you will not able to read the POST variable.

To fix this adding, you have to add this rule to htaccess, at the beginning, to avoid to rewrite the url:

RewriteRule ^my_action.php - [PT]

share|improve this answer

Try get instead for test reasons

<form action="#?name=test" method="GET">
  <input type="text" name="firstname" />
  <input type="submit" name="submit" value="Submit" />
</form>

and

if(isset($_GET)){
    echo $_GET['name'] . '<br>';
    echo $_GET['firstname'];
}
share|improve this answer
1  
Nothing. It's like the value gets eaten by a ninja. – belovah Jan 25 '12 at 12:32
Why would this make a difference? – bažmegakapa Jan 25 '12 at 12:33
Huge security risk. Only fetch what you need. – Frankline Jan 25 '12 at 12:34
because form has an action and you can just check for a general post. – Stevanicus Jan 25 '12 at 12:34
I'm going to try just about anything right now, even if it doesn't make sense. This is starting to drive me crazy. I have another form on my website and it's working fine. – belovah Jan 25 '12 at 12:35
show 6 more comments

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.