Jump to content

Confused


westminster86

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.