PHP_CHILD Posted January 12, 2013 Share Posted January 12, 2013 am using a live server to execute the follwing code. but each time the page loads i get the previous typed value of email. <html><body> <form action="index1.php" method="post"> <?php include('connect.php');?> //has only db connection.nothing else. Enter your email id <input type="text" name="email"> <input type="submit" name="submit" value="submit"> </form> <?php echo $_POST['email']; ?> </body> </html> It works fine in local xampp server. Should i configure somethin in my php.ini of live server?? Any help is highly appreciated... Quote Link to comment Share on other sites More sharing options...
oaass Posted January 12, 2013 Share Posted January 12, 2013 It would be useful to know what is going on in your index1.php file Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.