Jump to content

[SOLVED] javascript confirm box in php


jbingman

Recommended Posts

Ok so if I am right you want this

(not working example)

 

you have a button which calls  a function

 

<button onClick="save">a button</button>

 

this calls a function

<script>

function save(){
  var confirmSaveBox=confirm("do you wish to save");
  if(confirmSaveBox==true){
    //alert('save');
//call php page to update mysql
  }

}
</script>

 

now do you want this to happen without refreshing the page?

or do you wish to redirect to a page submitting the values with a form

Link to comment
Share on other sites

Javascript (put it in the 'head' tag):

 

<script language="javascript" type="text/javascript">

function saveForm(){
  var confirmSaveBox = confirm("Do you wish to save?");
  if(confirmSaveBox == true){
    document.form1.submit();
  }
}
</script>

 

HMTL:

 

<form name="form1" action="save.php">
   <input type="button" value="Save!" onClick="saveForm();" />
</form>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.