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

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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.