21/07/2011, 10:45
|
| | Fecha de Ingreso: septiembre-2008
Mensajes: 38
Antigüedad: 16 años, 2 meses Puntos: 2 | |
Respuesta: Problema Inserccion a base de datos PHP orientado a objetos // Lo Llamé index.php Es el principal
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
<title> INGRESAR DATOS CLIENTE</title>
<head>
<link rel="stylesheet" type="text/css" href="estilo.css" media="all">
<script type="text/javascript" LANGUAGE="JAVASCRIPT">
function verifica(){
//validar el codigo
if (document.funcion.codigo.value==0)
{
alert("Debes Ingresar el Codigo Del cliente")
document.funcion.codigo.focus()
return 0;
}
//validar nombre
if (document.funcion.nombre.value==0)
{
alert("Debes Ingresar Nombre del cliente")
document.funcion.nombre.focus()
return 0;
}
//validar Direccion
if (document.funcion.direccion.value==0)
{
alert("Debes Ingresar La Direccion Del Cliente")
document.funcion.direccion.focus()
return 0;
}
//validar Telefono
if (document.funcion.telefono.value==0)
{
alert("Debes Ingresar El Telefono del Cliente")
document.funcion.telefono.focus()
return 0;
}
//el formulario se envia
alert("Muchas gracias por enviar el formulario");
//document.funcion.submit();
//document.funcion.opt.value=1;
return true;
}
</script>
</head>
<body style="color:#000000;background-color:#ffffff;" >
<div align="center"> <img src="celulares4.png" width="490" height="258" border="0">
<?php
//include('config.php');
include('cliente.php'); // Con Parentesis
include('classBD.php'); // Con Parentesis
if(isset($_SESSION['usuario'])){ // isset sirve para saber si existe la session.
echo "<center>Estas logeado</center>";
}else{
print ("<BR><BR>\n");
print ("<P ALIGN='CENTER'>Acceso no autorizado</P>\n");
print ("<P ALIGN='CENTER'>[ <A HREF='index.php'>Conectar</A> ]</P>\n");
}
?>
<?php
extract($_GET);
if (isset($grabar))//SI YA FUE EJECUTADO GRBAR SE VIENE PARA ACA SI NO NO
{
$insertar = new cliente();
$insertar->agregarEmpleado($codigo, $nombre, $cedula, $direccion, $telefono);
}
?>
<center><h1>INGRESO DE DATOS CLIENTE</h1>
<form method="GET" name="funcion"
onSubmit="return verifica();">
<H3>DATOS PERSONALES</H3>
<H4>CODIGO DEL CLIENTE:</H4>
<input type="text" name="codigo" size="20"><br>
<FONT COLOR="#FF0000"> *CAMPO OBLIGATORIO </FONT><br>
<H4>NOMBRE COMPLETO:</H4>
<input type="text" name="nombre" size="20"><br>
<FONT COLOR="#FF0000"> *CAMPO OBLIGATORIO </FONT><br>
<H4>CEDULA:</H4>
<input type="text" name="cedula" size="20"><br>
<FONT COLOR="#FF0000"> *CAMPO OBLIGATORIO </FONT><br>
<H4>DIRECCION DEL CLIENTE:</H4>
<input type="text" name="direccion" size="20"><br>
<FONT COLOR="#FF0000"> *CAMPO OBLIGATORIO </FONT><br>
<H4>TELEFONO DEL CLIENTE:</H4>
<input type="text" name="telefono" size="20"><br>
<FONT COLOR="#FF0000"> *CAMPO OBLIGATORIO </FONT><br>
<br>
<input type="submit" value="grabar" name="grabar">
<input type="reset" name="borrar" value ="Borrar">
</form>
</center>
<center>
<br>
<BR>
<tr>
<td colspan="2">
<p align="center">
<p align="center"></td>
</tr>
</center>
<a href="salir.php">Desconectar</a>
</body>
</html> |