Guardar con PHP y Postgres
Hola estoy haciendo una aplicación con PHP y postgres y tengo un icono guardar que al hacerle click debería guardar en la Base de Datos este es mi código en negrita coloco donde llamo la función y la función está al final en un script, el error que me da es se esperaba un objeto código 0, ¿por favor necesito ayuda que objeto requiere?
<?php
session_start();
//include('../libreria/class/clases.php');
//$vaciados = new clase_vaciado();
$db = pg_connect("host=127.0.0.1 dbname=SIIO user=postgres
password=abc123") or
die ("Fallo en el establecimiento de la conexión");
$presupuesto = pg_query ($db, "select descripcion from tab_pri_presupuesto")or die("Error en la consulta SQL");
$estructura = pg_query ($db, "select descripcion from tab_pri_estructura")or die("Error en la consulta SQL");
?>
<!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" xml:lang = "en" lang = "en">
<head>
<link rel = 'stylesheet' href = '../diseno/css/style.css' type = 'text/css' />
<title>Consorcio Uriapari Tocoma - Vaciados</title>
</head>
<body onload = "">
<div id = 'head'></div>
<div id="contenido" align="center">
<div id="botones" align="center">
<table width="231" border="0" bordercolor="#006633">
<tr>
<td width="36" height="34"><img src="../diseno/icons/32/New.png" width="32" height="32" /></td>
<td width="36"><img src="../diseno/icons/32/Edit.png" width="32" height="32" /></td>
<td width="35"><img src="../diseno/icons/32/Save.png" width="32" height="32" onclick="guardarvaciado();"/></td>
<td width="39"><img src="../diseno/icons/32/Search.png" width="32" height="32" /></td>
<td width="39"><img src="../diseno/icons/32/Remove.png" width="32" height="32" /></td>
<td width="20"><img src="../diseno/icons/32/LogOut.png" width="32" height="32" /></td>
</tr>
</table>
</div>
<fieldset id="formulario"><legend>Información de Vaciados</legend>
<form>
<div id= "datos_form" align="left">
<table width="200" border="0">
<tr>
<td>Codigo</td>
<td><input type="text" name="codigo" /></td>
</tr>
<tr>
<td>Nombre</td>
<td><input type="text" name="nombre" /></td>
</tr>
<tr>
<td valign="top">Descripción</td>
<td><textarea name="descripcion"></textarea></td>
</tr>
<tr>
<td>Fecha Inicio </td>
<td><select name="fecha_inicio" size="1">
<option value="">---Seleccione---</option>
<option value="">10/06/09</option>
</select>
</td>
</tr>
<tr>
<td>Fecha Fin </td>
<td><select name="fecha_fin" size="1">
<option value="">---Seleccione---</option>
<option value="">10/06/09</option>
</select>
</td>
</tr>
<tr>
<td>Hora Inicio </td>
<td><input type="text" name="hora_inicio" /></td>
</tr>
<tr>
<td>Hora Fin </td>
<td><input type="text" name="hora_fin" /></td>
</tr>
<tr>
<td>Presupuesto</td>
<td><select name="presupuesto">
<option value="">---Seleccione---</option>
<?php while($row=pg_fetch_array($presupuesto)){?>
<option value="<?php echo $row['descripcion']?>">
<?php echo $row['descripcion']?></option>
<?php...
<?php
session_start();
//include('../libreria/class/clases.php');
//$vaciados = new clase_vaciado();
$db = pg_connect("host=127.0.0.1 dbname=SIIO user=postgres
password=abc123") or
die ("Fallo en el establecimiento de la conexión");
$presupuesto = pg_query ($db, "select descripcion from tab_pri_presupuesto")or die("Error en la consulta SQL");
$estructura = pg_query ($db, "select descripcion from tab_pri_estructura")or die("Error en la consulta SQL");
?>
<!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" xml:lang = "en" lang = "en">
<head>
<link rel = 'stylesheet' href = '../diseno/css/style.css' type = 'text/css' />
<title>Consorcio Uriapari Tocoma - Vaciados</title>
</head>
<body onload = "">
<div id = 'head'></div>
<div id="contenido" align="center">
<div id="botones" align="center">
<table width="231" border="0" bordercolor="#006633">
<tr>
<td width="36" height="34"><img src="../diseno/icons/32/New.png" width="32" height="32" /></td>
<td width="36"><img src="../diseno/icons/32/Edit.png" width="32" height="32" /></td>
<td width="35"><img src="../diseno/icons/32/Save.png" width="32" height="32" onclick="guardarvaciado();"/></td>
<td width="39"><img src="../diseno/icons/32/Search.png" width="32" height="32" /></td>
<td width="39"><img src="../diseno/icons/32/Remove.png" width="32" height="32" /></td>
<td width="20"><img src="../diseno/icons/32/LogOut.png" width="32" height="32" /></td>
</tr>
</table>
</div>
<fieldset id="formulario"><legend>Información de Vaciados</legend>
<form>
<div id= "datos_form" align="left">
<table width="200" border="0">
<tr>
<td>Codigo</td>
<td><input type="text" name="codigo" /></td>
</tr>
<tr>
<td>Nombre</td>
<td><input type="text" name="nombre" /></td>
</tr>
<tr>
<td valign="top">Descripción</td>
<td><textarea name="descripcion"></textarea></td>
</tr>
<tr>
<td>Fecha Inicio </td>
<td><select name="fecha_inicio" size="1">
<option value="">---Seleccione---</option>
<option value="">10/06/09</option>
</select>
</td>
</tr>
<tr>
<td>Fecha Fin </td>
<td><select name="fecha_fin" size="1">
<option value="">---Seleccione---</option>
<option value="">10/06/09</option>
</select>
</td>
</tr>
<tr>
<td>Hora Inicio </td>
<td><input type="text" name="hora_inicio" /></td>
</tr>
<tr>
<td>Hora Fin </td>
<td><input type="text" name="hora_fin" /></td>
</tr>
<tr>
<td>Presupuesto</td>
<td><select name="presupuesto">
<option value="">---Seleccione---</option>
<?php while($row=pg_fetch_array($presupuesto)){?>
<option value="<?php echo $row['descripcion']?>">
<?php echo $row['descripcion']?></option>
<?php...
1 respuesta
Respuesta de apolinux
1