10/01/2005, 14:13
|
| | | Fecha de Ingreso: octubre-2004
Mensajes: 203
Antigüedad: 20 años, 1 mes Puntos: 0 | |
hola amigo mira ya logre que funcione pero como saco el ultimo dato del select para llevarlo a mi siguiente consulta
<?php
$clavefrente = substr($_POST['clavefrente'],0,2);
$descpresupuesto = substr($_POST['selecdescpre'],5,100);
$connection = mysql_connect("localhost","administrador","adminis trador");
mysql_select_db("destajos",$connection);
$resultados = mysql_query("SELECT * FROM frentes",$connection);
echo "<table><tr><td><font color = \"blue\" size = \"4\" face = \"arial\"><b>MODIFICAR Y ELIMINAR PRESUPUESTO (PASO 1)</b></font></td></td>";
echo "</table><br><br>";
echo "<form name = \"selecclafrente\" method = \"POST\" action = \"capturafrente.php\">";
echo "<table>";
echo "<tr><td><font color = \"blue\" size = \"3\" face = \"times new romans\"><b>FRENTE:</b></font><td><select name = \"clavefrente\" onchange = \"selecclafrente.submit()\">";
echo "<option>-->SELECCIONE FRENTE<--</option>";
while($rows = mysql_fetch_assoc($resultados)){
if($rows['clavefrente']==$clavefrente){
echo "<option selected>$rows[clavefrente]-$rows[nombrefrente]</option>";
}else{
echo "<option>$rows[clavefrente]-$rows[nombrefrente]</option>";
}
}
echo "</select></td></tr>";
$descpresup = mysql_query("SELECT DISTINCT descpresupuesto, clavepresupuesto FROM conceptospre where clavefrente = '$clavefrente'",$connection);
echo "<tr><td><font color = \"blue\" size = \"3\" face = \"times new romans\"><b>PRESUPUESTO:</b></font><td><select name = \"selecdescpre\" onchange = \"selecclafrente.submit()\">";
echo "<option>-->SELECCIONE PRESUPUESTO<--</option>";
while($rows = mysql_fetch_assoc($descpresup)){
if($rows['descpresupuesto']==$descpresupuesto){
echo "<option selected>$rows[clavepresupuesto]-$rows[descpresupuesto]</option>";
}else{
echo "<option>$rows[clavepresupuesto]-$rows[descpresupuesto]</option>";
}
}
echo "</select></td></tr>";
$clavepartida = mysql_query("SELECT DISTINCT clavepartida FROM conceptospre where clavefrente = '$clavefrente' and descpresupuesto = '$descpresupuesto'",$connection);
echo "<tr><td><font color = \"blue\" size = \"3\" face = \"times new romans\"><b>PARTIDA:</b></font><td><select name = \"partida\">";
echo "<option>--->SELECCIONE PARTIDA<---</option>";
while($rows = mysql_fetch_assoc($clavepartida)){
echo "<option>$rows[clavepartida]</option>";
}
echo "</select></td></tr>";
echo "</form></table>";
echo "<form name = \"enviodatos\" method = \"POST\" action = \"enviofrentetabla.php\">";
echo "<input type = \"hidden\" name = \"clavefrente\" value = \"$clavefrente\">";
echo "<input type = \"hidden\" name = \"descpresupuesto\" value = \"$descpresupuesto\">";
echo "<input type = \"hidden\" name = \"clavepartida\" value = \"\">";
echo "<tr><td><input type = \"submit\" value = \"(PASO 2)\"></td></tr>";
echo "</table></form>";
?> |