Skip to content
Advertisement

display the same form with new updated data after click on save button in PHP

I have a form that show the user information and when I load userpage.php all info appear in each field and user can edit his information all is good until the user click on save button, it have to show the same form with updated information, data updated in database but the new data doesn’t appear when user click save.

This is the form fields values after click on save button:


Notice: Trying to access array offset on value of type null in C:xampphtdocsserveruserpage.php on line 27

Notice: Trying to access array offset on value of type null in C:xampphtdocsserveruserpage.php on line 28

Notice: Trying to access array offset on value of type null in C:xampphtdocsserveruserpage.php on line 29

This is the userpage.php file:

JavaScript

Update.php file code:

JavaScript

Advertisement

Answer

On your userpage.php. You get $id via method POST but in the page update.php you redirect back to userpage.php. The redirection is method GET that is why you lost the ID.

To prevent this, use session that is already set.
First, remove your 2 lines of code.

JavaScript

And replace with this.

JavaScript

And then you can use $id as before.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement