10/05/2012, 15:48
|
| | Fecha de Ingreso: julio-2008
Mensajes: 31
Antigüedad: 16 años, 4 meses Puntos: 1 | |
Respuesta: Problema con ambito variables php este es el codigo
include("../conexion.php");
if (isset($_POST['opciones'])) {
$opciones = $_POST['opciones'];
switch ($opciones){
case 1: {
include("../conexion.php");
echo consultar();
break;
}
case 2:
grabar();
break;
case 3:
consultar_grilla();
break;
case 4:
insertar_articulos(9);
}
}
function consultar()
{
include("../conexion.php");
$codigo_cudn = $_POST['codigo_cudn'];
setcookie("cudn", $codigo_cudn);
global $codigo_cudn;
global $descripcion_cudn;
global $cantidad;
$sql = "SELECT * FROM gen_presupuesto WHERE codigo_cudn = '$codigo_cudn'";
$result = mysql_query($sql, $con);
if (mysql_num_rows($result)) {
$codigo_cudn = mysql_result($result, 0,"codigo_cudn");
$descripcion_cudn = mysql_result($result, 0,"descripcion_cudn");
$medida = mysql_result($result, 0,"medida");
}
}
}
en resumen estos tres valotres asignarselos a:
<tr>
<td height="26" class="titulo_campo">Código CUDN</td>
<td height="26" colspan="3">
<input type="text" name="codigo_cudn" size="20" maxlength="20" value="<?php echo $codigo_cudn ?>" onChange="consultar();">
</td>
</tr>
<tr>
<td height="26" class="titulo_campo">Descripción</td>
<td width="569" height="26"><input type="text" name="descripcion_cudn" size="50" maxlength="50" value="<?php echo $descripcion_cudn ?>"></td>
<td width="88" height="26" class="titulo_campo">Unidad</td>
<td width="60" height="26"><input type="text" name="medida" size="5" maxlength="5" value="<?php echo $medida ?>"></td>
</tr> |