I have a php page that lets a user upload an image. Once uploaded they hit the submit button and I send them to a php page that adds the image – shows it to them and then goes back to the first page. It loops and loops adding images. This is what I want since they may have several pictures to add for a specific house for a real estate business.
I have a reset button. How does one go about activating a third button called Done? I want it to quit the loop between web page a and b and go back to the calling page.
I don’t know Java.
I seem to have read somewhere that you can see the URL of the calling page. Can I save that the first time I see it when Page A is called – the one that lets them upload an image? I know as soon as I go to Page B – the one that displays the image they have uploaded the URL will point to page A.
Should I use and ISSET() to see if “Done” has been pressed?
<Form>
[Submit] [Reset] [Done]
</Form>
What is the php var that will give me the calling page?
I am using the latest version of PhP and MySql.
😃