westminster86 Posted April 7, 2008 Share Posted April 7, 2008 I have a page with several links(myaccount.php). One of which is a link that allows the user to change his/her email address and password. So, if the user clicks the link, there taken to the changeemail.php page which displays a form for the user to fill in. The forms action is set to myaccount.php page. If for instance the user fails to enter information into all the fields, and clicks the submit button, an error message is displayed on the myaccount.php page. My problem is that it is displaying the links as well as the error message. I want it to just to display the error message. Link to comment https://forums.phpfreaks.com/topic/99962-confused/ Share on other sites More sharing options...
GingerRobot Posted April 7, 2008 Share Posted April 7, 2008 Wouldn't it be easier to have chageemail.php deal with the form? You can work out what information to display using the isset() function. For example: <?php if(isset($_POST['submit']){ //where submit is the name given to the relevant submit button. //process form }else{ //show form } ?> Link to comment https://forums.phpfreaks.com/topic/99962-confused/#findComment-511150 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.