RE: [PHP] adding confirmation to an existing upload form

2003-06-11 Thread Ralph
If you want them to preview then commit, simply give the SEND PHOTO TO SERVER button a name like: then in your code you can simply check for $_POST['send_photo'] before calling the function that saves the image like: if($_POST['send_photo']){ // call the upload and add to database function.

Re: [PHP] adding confirmation to an existing upload form

2003-06-11 Thread Jason Wong
On Wednesday 11 June 2003 15:45, Artoo wrote: > I have an upload script in which the user selects an image to upload, and a > brief description. I would like to have some kind of confirmation that > allows the user the ability to upload the file and description or go back > and make changes. >