13/04/2016, 11:14
|
| | Fecha de Ingreso: abril-2016
Mensajes: 19
Antigüedad: 8 años, 8 meses Puntos: 0 | |
Respuesta: Disintos index.php apartir de presionar un boton Este mi index.php
Código:
<?php
require "conexion.php";
require "formularioclientes.php";
if ($_REQUEST['registrar'])
{
$id=$_REQUEST['cedrif'];
$name=$_REQUEST['nombre'];
$nacionalidad=$_REQUEST['nacionalidad'];
$direccion=$_REQUEST['direccion'];
$mail=$_REQUEST['correo'];
$tlf=$_REQUEST['telefono'];
$queryregistro="insert into clientes (id_cedrif,nombre,direccion,correo,telefono,nacionalidad)
values ('$id','$name','$direccion','$mail','$tlf','$nacionalidad');";
$queryconsulta=mysql_query("select id_cedrif,nombre,direccion,correo,telefono,nacionalidad from clientes where id_cedrif='$id'",$con);
if (($name!="") && ($direccion!="") && ($mail!="") && ($tlf!=""))
{
$array=mysql_fetch_array($queryconsulta);
if ($nacionalidad!="0")
{
if ($array['id_cedrif']==$_REQUEST['cedrif'])
{
echo "<cente>El numero de cedula o RIF ingresado ya se encuentra registrado</center>";
}
else
{
mysql_query(($queryregistro),$con) or die ("Problema con la conexion");
echo "<center>EL cliente fue guardado</center>";
}
}
else
{
echo "<center>Debe seleccionar si es Venezolano (V) Extranjero (E) o Empresa (J)</center>";
}
}
else
{
echo "<center> Debe rellenar todos los datos </center>";
}
}
if ($_REQUEST['buscar'])
{
/*header ('location: busquedaclientes.php');*/
if (($_REQUEST['cedrif']!=""))
{
$id=$_REQUEST['cedrif'];
$queryconsulta=mysql_query("select * from clientes where id_cedrif='$id'",$con);
$array=mysql_fetch_array($queryconsulta);
if ($array['nacionalidad']==1)
{
$n1=J;
}
else
if ($array['nacionalidad']==2)
{
$n1=V;
}
else
{
$n1=E;
}
echo require "buscarcliente.php";
}
else
{
echo "<center>Debes colocar algun RIF o cedula</center>";
}
}
if ($_REQUEST['actualizar'])
{
header ('location: ');
if (($_REQUEST['cedrif']!=""))
{
$id=$_REQUEST['cedrif'];
$queryconsulta=mysql_query("select * from clientes where id_cedrif='$id'",$con);
$array=mysql_fetch_array($queryconsulta);
}
}
?>
</body>
</html>
Este es formularioclientes.php
Código:
<?php
/*if ($_REQUEST['buscar'])
{*/
$index=
'
<html>
<head>
<title>Registro de clientes</title>
</head>
<body>
<form action="registroclientes2.php" method="post">
<center>
<table border="2" bordercolor="#151515" bgcolor="#F7F8E0" width="600">
<tr>
<td width="150"><center>RIF o Cedula</center>
</td>
<td width="30">
<select name="nacionalidad">
<option value="0">---</option>
<option value="1">J</option>
<option value="2">V</option>
<option value="3">E</option>
</select>
</td>
<td width="393">
<input type="text" maxlength="9" size="5" name="cedrif">
</td>
</tr>
<tr>
<td><center>Razon Social</center>
</td>
<td colspan="2">
<input type="text" size="60" name="nombre">
</td>
</tr>
<tr>
<td><center>Direccion</center>
</td>
<td colspan="2">
<input type="text" size="60" name="direccion">
</td>
</tr>
<tr>
<td><center>Correo electronico</center>
</td>
<td colspan="2">
<input type="text" size="60" name="correo">
</td>
</tr>
<tr>
<td><center>Telefono</center>
</td>
<td colspan="2">
<input type="text" size="60" name="telefono">
</td>
</tr>
</table>
<input type="submit" name="registrar" align="left" value="Registrar">
<input type="submit" name="buscar" value="Buscar">
<input type="submit" name="actualizar" value="Actualizar cliente">
<input type="submit" name="eliminar" value="Eliminar cliente">
</form>
</body>
';
echo $index;
/*}*/
?>
Lo que quiero es que al momento de presionar buscar me muestre otro formulario y se sustituye el del index inicial. PD: OJO recuerden estoy comenzando con PHP tengo apenas 1 semana con esto de programacion no me critiquen el codigo, funciona como lo tengo, gracias. Se que abra muchas maneras de hacerlo mejor. |