Con este javascript me aparece el mensaje de que no son correctos y cuando le doy aceptar el vil formulario lo envía!
Quiero que se detenga ahi para que lo puedan modificar, o sea que uno le de aceptar y que el formulario no se envie sino que se quede ahi.
Este es mi codigo:
Código PHP:
<?php require_once('Connections/segurodb.php'); ?>
<?php
///////Configuración/////
$mail_destinatario = '@';
///////Fin configuración//
if (isset ($_POST['Grabar'])) {
$headers .= "From: ".$_POST['email']. "";
if ( mail ($mail_destinatario, $_POST['ciudades'], "Nit : ".$_POST['nit']." Telefono: ".stripcslashes ($_POST['telefono'])." Departamento: ".stripcslashes ($_POST['ciudades'])." Empresa : ".stripcslashes ($_POST['empresa']), $headers )) echo '
'; }
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO registro (ciudades, nit, email, telefono, empresa) VALUES (%s, %s, %s, %s, %s)",
GetSQLValueString($_POST['ciudades'], "text"),
GetSQLValueString($_POST['nit'], "text"),
GetSQLValueString($_POST['email'], "text"),
GetSQLValueString($_POST['telefono'], "text"),
GetSQLValueString($_POST['empresa'], "text"));
mysql_select_db($database_segurodb, $segurodb);
$Result1 = mysql_query($insertSQL, $segurodb) or die(mysql_error());
$insertGoTo = "gracias.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
mysql_select_db($database_segurodb, $segurodb);
$query_rc_registro = "SELECT * FROM registro";
$rc_registro = mysql_query($query_rc_registro, $segurodb) or die(mysql_error());
$row_rc_registro = mysql_fetch_assoc($rc_registro);
$totalRows_rc_registro = mysql_num_rows($rc_registro);
mysql_select_db($database_segurodb, $segurodb);
$query_rc_ciu = "SELECT * FROM ciudades ORDER BY ciudades ASC";
$rc_ciu = mysql_query($query_rc_ciu, $segurodb) or die(mysql_error());
$row_rc_ciu = mysql_fetch_assoc($rc_ciu);
$totalRows_rc_ciu = mysql_num_rows($rc_ciu);
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>tit</title>
function comprobarClave(){
nit = document.form1.nit.value
nit2 = document.form1.nit2.value
if (nit == nit2)
alert("Las dos claves son iguales...\nRealizo las acciones del caso en que son iguales")
else
alert("Las dos claves son distintas...\nRealizo las acciones del caso en que no son iguales")
}
</script>
</head>
<body>
<script type="text/javascript">
</noscript></td>
</tr>
</table></td>
</tr>
<tr>
<td height="60" align="center" valign="middle" class="titulos_contenido">Apreciado clientes.</td>
</tr>
<tr>
<td height="188" valign="top">
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<!--DWLayoutTable-->
<tr>
<td width="835" height="188" align="center" valign="middle" class="titulo_internos"><form method="post" name="form1" action="<?php echo $editFormAction; ?>">
<table align="center">
<tr valign="baseline">
<td align="right" valign="middle" nowrap class="campos">Dpto</td>
<td align="left"><select name="ciudades" class="campos2" id="ciudades">
<?php
do {
?>
<option value="<?php echo $row_rc_ciu['ciudades']?>" ><?php echo $row_rc_ciu['ciudades']?></option>
<?php
} while ($row_rc_ciu = mysql_fetch_assoc($rc_ciu));
?>
</select> </td>
<tr valign="baseline">
<td align="right" valign="middle" nowrap class="campos">Nit</td>
<td align="left" valign="middle"><input name="nit" type="text" class="campos2" id="nit" size="28" maxlength="28"></td>
<tr valign="baseline">
<td align="right" valign="middle" nowrap class="formulario2">Introduce nuevamente Nit</td>
<td align="left" valign="middle"><input name="nit2" type="text" class="campos" id="nit2" size="28" maxlength="28"></td>
</tr>
<tr valign="baseline">
<td align="right" valign="middle" nowrap class="campos">E-mail</td>
<td align="left" valign="middle"><input name="email" type="text" class="campos2" id="email" value="" size="28"></td>
</tr>
<tr valign="baseline">
<td align="right" valign="middle" nowrap class="campos">Telefono</td>
<td align="left" valign="middle"><input name="telefono" type="text" class="campos2" id="telefono" value="" size="10" maxlength="10"></td>
</tr>
<tr valign="baseline">
<td align="right" valign="middle" nowrap class="campos">Empresa</td>
<td align="left" valign="middle"><input name="empresa" type="text" class="campos2" id="empresa" value="" size="25" maxlength="25" /></td>
</tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td align="center" valign="middle"><div align="center">
<input name="Grabar" type="submit" class="campos" id="Grabar" value="Grabar" onClick="comprobarClave()">
</div></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form></td>
</tr>
</table>
<tr>
<td height="37" valign="top">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<!--TABLA BARRA-->
<tr>
<td width="835" height="37" valign="top"><!--CELDA BARRA-->
<script type="text/javascript">
</noscript></td>
</tr>
</table>
<tr>
<td height="79" valign="top">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<!--TABLA FIRMAS-->
<tr>
<td width="835" height="49" align="center" valign="middle" class="texto_firma">
<p class="formulario2"></p></td>
</tr>
</table>
</table>
<tr><td height="52" colspan="3" align="center" valign="middle" class="campos2"> </td>
</tr>
<tr>
<td height="37" colspan="3" valign="top"> </td>
</tr>
<tr>
<td height="79" colspan="3" valign="top"> </td>
</tr>
</table>
</div>
</body>
</html>
<?php
mysql_free_result($rc_registro);
mysql_free_result($rc_ciu);
?>