I have three pages: The first inserts some info into the DB. The second inserts some new info into the DB ,when it is requested The third shows this information
How to notify the third page when the second updates the info?
I have three pages: The first inserts some info into the DB. The second inserts some new info into the DB ,when it is requested The third shows this information
How to notify the third page when the second updates the info?
Redirect to it from page 2 and append GET parameters such as http://www.your.url/page3?changed=true
Have a check on page 3 for parameters and behave accordingly.