Ver Mensaje Individual
  #6 (permalink)  
Antiguo 01/10/2009, 13:05
Bertitha
 
Fecha de Ingreso: septiembre-2009
Ubicación: Aguascalientes,Méx
Mensajes: 158
Antigüedad: 15 años, 2 meses
Puntos: 0
Respuesta: enlazar pagina en php

Claro como les comentaba antes en la pagina RCliente.php es donde se hace el insert o registro de un cliente pero valido esa pagina con la herramienta spry de dreamweaver despues de que se valida y presiona el boton guardar quiero enlazar a la pagina RContacto.php para registrar contactos de dicho cliente y el insert lo hago con el asistente que traer dreamweaver les pongo el codigo espero y me entiendan lo que deseo hacer

<?php require_once('Connections/Connexion.php'); ?>
<?php
//initialize the session
if (!isset($_SESSION)) {
session_start();
}

// ** Logout the current user. **
$logoutAction = $_SERVER['PHP_SELF']."?doLogout=true";
if ((isset($_SERVER['QUERY_STRING'])) && ($_SERVER['QUERY_STRING'] != "")){
$logoutAction .="&". htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_GET['doLogout'])) &&($_GET['doLogout']=="true")){
//to fully log out a visitor we need to clear the session varialbles
$_SESSION['MM_Username'] = NULL;
$_SESSION['MM_UserGroup'] = NULL;
$_SESSION['PrevUrl'] = NULL;
unset($_SESSION['MM_Username']);
unset($_SESSION['MM_UserGroup']);
unset($_SESSION['PrevUrl']);

$logoutGoTo = "Autenticar.php";
if ($logoutGoTo) {
header("Location: $logoutGoTo");
exit;
}
}
?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$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"] == "form2")) {
$insertSQL = sprintf("INSERT INTO cliente (nom_empresa, etapa, giro, fingreso, rfc, direccion, estado, ciudad, delegacion, codigop, tel1, tel2, tel3, fax1, fax2, tipo_cliente, estatus) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['nom_empresa'], "text"),
GetSQLValueString($_POST['etapa'], "text"),
GetSQLValueString($_POST['giro'], "text"),
GetSQLValueString($_POST['fingreso'], "text"),
GetSQLValueString($_POST['rfc'], "text"),
GetSQLValueString($_POST['direccion'], "text"),
GetSQLValueString($_POST['estado'], "text"),
GetSQLValueString($_POST['ciudad'], "text"),
GetSQLValueString($_POST['delegacion'], "text"),
GetSQLValueString($_POST['codigo'], "int"),
GetSQLValueString($_POST['tel1'], "text"),
GetSQLValueString($_POST['tel2'], "text"),
GetSQLValueString($_POST['tel3'], "text"),
GetSQLValueString($_POST['fax1'], "text"),
GetSQLValueString($_POST['fax2'], "text"),
GetSQLValueString($_POST['tipo_cliente'], "text"),
GetSQLValueString($_POST['estado_cli'], "int"));


mysql_select_db($database_Connexion, $Connexion);
$Result1 = mysql_query($insertSQL, $Connexion) or die(mysql_error());
echo "<script>alert('Cliente registrado con éxito')</script>";
}
?>

este echo que ven al final es para que aparezca e pantalla ese mensaje pero ahora dodne pongo el header con el location?