¿ como pongo un mesaje de advertencia tipo(aceptar cancelar ), al apretar el boton envio para aceptar o validar el envio de un form en php.
tengo un cogigo de pruebas, pero no me ha funcionado:
prueba.php
Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Prueba</title>
</head>
<body>
<?
if(!$_POST)
{
echo'
<form id="form1" name="form1" method="post" action="prueba.php"><fieldset><legend>
1</legend>
<label>
<input type="text" name="campo" />
</label>
<p>
<label>
<input type="submit" name="Submit" value="Enviar" onclick="return confirm("Esta seguro de borrar?");"/>
</label>
</p>
</fieldset>
</form>';
}
else
{
extract($_POST);
echo"$campo<br>";
}
?>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Prueba</title>
</head>
<body>
<?
if(!$_POST)
{
echo'
<form id="form1" name="form1" method="post" action="prueba.php"><fieldset><legend>
1</legend>
<label>
<input type="text" name="campo" />
</label>
<p>
<label>
<input type="submit" name="Submit" value="Enviar" onclick="return confirm("Esta seguro de borrar?");"/>
</label>
</p>
</fieldset>
</form>';
}
else
{
extract($_POST);
echo"$campo<br>";
}
?>
</body>
</html>