document expired after pressing back button - php

I have a page called a.php . It has a form and submit data via POST to same file (a.php) . Page loads with no error. Then I click any link (b.php or b.html) on that page . it directs to any page as usual. Then when I click back button from b.php or b.html it does not show previous page.
Any help to solve this matter ?
Thanks

About Method
The $_POST Method used for SUBMITTING FORMS something Create or Modify it is a secure method.In other words POST is sending data to server from browser
FOR EXAMPLE
Creating Articles
Editing Articles
File Uploading
In your case you are getting values POST is not for getting values Use $_GET method for this
Why Document Expires ?
I taken this Image from wikipedia.
Why Browser Do this?
It is because it prevent from duplicate submission.
For Example : On any shopping site there are payment options user buy a product and pay for it , now if he/she(user) refresh page again the payment done two times .

according to your question, page a.php is submitting data (post) to the page itself, so if you go to other page and then want to back again to page a.php (by clicking the back button on browser) it causes document expired because when you click it you are not submitting any data (post) to page a.php.

Related

How to go back without asking to confirm resubmission of the form

I have a web page that loads all the data from a mysql database called datalist.php
From this page I can edit record by record with a button that redirects you to an editdata.php page adapted to the fid of the record.
Once edited as they want to see the changes, I don't redirect them to the main one letting them see the changes and simply clicking back or with a button they return to the datalist.php without any problem.
The button is this
echo "<p id='parrafo'><a style='padding:1px 20px'class='button rounded-0 primary-bg text-white w-0 btn_1 boxed-btn' href='javascript:history.back() '><--</a></p>";
PROBLEM
I added a search engine where the displayed data can be filtered.
When they use the search engine from datalist.php, I direct them to a page called search engine.php where, through a post method, I store what they are looking for in a variable and the data that users want appears.
But when they edit a filtered record, it is edited without problems, but when they go back, they return to the search engine.php and the message appears:
"Confirm form resubmission In order to display correctly, this web page needs the data you entered earlier. You can submit that data again, but that will cause the page to repeat all previous actions. Press Reload to submit the data and display the page.
Hit the page refresh button to resubmit the data needed to load the page."
Of course, if they update, they come back when the filtered data comes out.
Isn't there any way to store the variable used in the search so that when I go back I don't get this error or any solution??
simple! when user will submit form for that variable instead of making post request
option1: just use get request __url__?variable=... but this will not remember the variable when you go back
option2: store the variable in the cookie and just go to next page (eg. window.location.href = '...';). and in next page access the cookie from php.
If you are wanting to show the form to the user as a confirmation, but without the possibility of another post, then remove the form element and the button. Display all other boxes as they are (with the values populated from the POST array).
And display another message telling them that it has been successful.
You are using PHP, you can achieve this easily with it. If you are unsure, then post a short version of your code in a separate question.

GET rid of a page from browser history

I have a page for example, say first.html. it has a form with action set to, say xyz.php.
This php file ,after processing , sends a header () with location . Now browser fetches the page.
Now when I click back button ,first.html shows.
Is there a way to get rid of that first.html page and show other page from history?
When there's a redirect if you want to replace the page that triggered the redirect you can use window.location.replace(newUrl).
Here's the documentation for replace

How can i prevent repeat submit when i refresh web page?

My situation:
On the html page i click the button to submit my form . And after process of php , send back the result to html page and bring out . But when i refresh my page , and pop-up the window and ask me whether or not send the form data again . But now i don't want to let this window appear , i google and get some solutions , redirect or the others , but my problem won't be solved. How can i do for my problem .
Notice: I will use the data of the php process and send back , so i can use the redirect method .
Thanks all .
The simplest solution is to split your page into 2 parts.
The first part presents the page to the browser but instead of submitting back to the same page you submit to another page. Once that page has done what is required with the data from the page you redirect to the original page.
So page xxx.php collects any data required before presenting the page to the browser and has an <form action="xxx_upd.php"....>
And page xxx_upd.php just reads $_POST or $_GET and processes the input, once complete it does a header( 'Locaction: xxx.php' ); to cause the first page to reload but as it has been reset to initial state by this process it will not cause the message when you refresh the page and will not try to re-run the processing which is now done by xxx_upd.php

php back navigation issue

I am building a php web app and I am having some trouble with the navigation. It seems the user have to hit back twice to get past one of my apparent traps. . .
Consider this situation. The user wants to upload a file with a description, so he hits upload and gets directed to the upload.php page. He fills out the form and submits the form to uploader.php. Uploader.php redirects him back to upload.php?yay=true.
From here, he needs to hit back twice to get back to the page where he hit the upload button.
Is there a clever way to keep track of which page he originally came from (this case, 2 pages back) or do i need to keep his navigation story in say the session variable?
I could also just redirect to the page from where the user hit the upload button, but this means that the back button will take him to the fileupload.php page instead of the page previously to the one that had the upload button.
Any help appriciated!
Simple after doing upload stuff, justt redirect him to the original page like
// do the upload stuff
header('location:the_page_name.php');//the page where user originaly came from

Stay on current page after POST

I have a form which once the Submit button is pressed, it goes to a blank page and returns any error messages on that blank page. However I have a website template and I wish that my script is run, and returns the the page which did the action POST and puts any error messages on that page.
Example of what is happening:
PAGE REQUESTS POST ----> SCRIPT RUNS ---> RETURNS ERROR MESSAGE
What I want it to do is:
PAGE REQUESTS POST ---> SCRIPT RUNS ----> GOES TO THE PAGE WHICH REQUESTED POST ----> SHOWS ANY ERROR MESSAGES WHICH THE SCRIPT PICKED OUT.
Sure you can, just set the Action of your form to the current page. Then the $_POST will contain all the values the user filled in the form.
You have two options. I assume your are going to a blank page, because your POST goes to a PHP script different from the page it is posting from.
Option 1 - Post to the same PHP page as the page your are posting from.
Option 2 - Once you have posted, and generate an error, redirect back to the page, with the errors stored in a session, or a cookie, so that they can be rendered on the original page.
Assuming that the page containing the request form is also able to display the error messages, set the form attribute to the url of the page containing the form (as TJHeuvel noted) or just make action attribute empty, e.g, <form action="">.
After going to blank page store all the posted variables in your variable say $get with syntax param1=value1&param2=value2 and so on...and redirect back by header("Location: back.php?$get"); and in your main page by $_GET echo all the vars

Categories