On your submit button put the following: <input type="submit" name="submit" onClick="return confirm('Are you sure you want to delete??')">
Hope that helps, Craig "Davy Obdam" <[EMAIL PROTECTED]> wrote in message 001a01c26f9e$a1c78a80$9600000a@davy">news:001a01c26f9e$a1c78a80$9600000a@davy... > Hi people, > > Maybe a bit off-topic, but i thought lets ask anyway. I have a guestbook > admin page were i can delete multiple items from the database using > checkboxes. So when i click on the Submit button i would like a > javascript confirm box coming up. I have done that, but it deletes the > item(s) anyway, also if i click on cancel. > > This is my javascript code in the head of the document: > > <script language="JavaScript" type="text/javascript"> > <!-- > function ConfirmDelete() > { > input_box=confirm("Are you sure that you want to delete the > selected items?"); > if (input_box!=true) > { > return false; > } > else > { > return true; > } > } > //--> > </script> > > This is what i use in my PHP code: > > <?php > //Guestbook admin page > echo " > <form name=\"admin\" onSubmit=\"ConfirmDelete();\">"; > //The rest of my form > echo " > <input type=\"submit\" name=\"submit\" value=\"delete\"> > </form>"; > ?> > > <?php > //Delete items from guestbook > if(isSet($submit)) > { > //Delete items > } > ?> > > Any help is appreciated, thanks for your time, > > Best regards, > > Davy Obdam, > mailto:[EMAIL PROTECTED] > > -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php