Empty $_POST after submit.

[email protected] (Ninad)
Newsgroups php.general
Message-ID <[email protected]>
Dear all,

I am having 2 servers. One is running fedora 10 with php 5.2.6-5 and 
second one is running
fedora17 with php 5.4.13.
Below given code is working absolutely fine on fedora10 with php5.2 But 
the same code is not working on fedora17 with php 5.4.13. After submit I 
am getting $_POST variable empty.

Please guide me in the same.


<?php
if (isset($_POST['lastname'], $_POST['lastname']))
{
    echo("First name: " . $_POST['firstname'] . "<br />\n");
    echo("Last name: " . $_POST['lastname'] . "<br />\n");
}
?>

<html>
<head>
</head>
<body>
<form action="index.php" method="post">
    <p>First name: <input type="text" name="firstname" /></p>
    <p>Last name: <input type="text" name="lastname" /></p>
    <input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>


Thanks & Regards,
Ninad.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.