Ver Mensaje Individual
  #9 (permalink)  
Antiguo 13/06/2009, 19:08
JUAN CARLOS RB
 
Fecha de Ingreso: noviembre-2004
Mensajes: 223
Antigüedad: 20 años
Puntos: 0
Respuesta: Problema con formulario

Mira tengo un archivo llamado incidetalle.php. Donde muestra todos los valores de los campos que pertenece a incidencias, recibe el codigo de incidencia de otro formulario:

<?php
include("conectar_bd.php");
$valor=$_GET["id"];
$result=mysql_query("select id,sede,fecha,nombre,tincidencia,estado,descripcio n,observaciones,solucion from incidencias where id= $valor");
while ($row=mysql_fetch_array($result))
{
echo "<b> Codigo: </b>";
echo "<input type=text name=id style='width:50' class='style_input' value=".$row["id"].">";
echo "<b> Sede: </b>";
echo "<input type=text name=sede style='width:90' class='style_input' value='".$row["sede"]."'>";
echo "<b> Fecha: </b>";
echo "<input type=text name=fecha style='width:80' class='style_input' value='".$row["fecha"]."'>";
echo "<br></br>";
echo "<b> Nombre: </b>";
echo "<input type=text name=nombre style='width:110' class='style_input' value='".$row["nombre"]."'>";
echo "<br></br>";
echo "<b> Tipo incidencia: </b>";
echo "<input type=text name=tincidencia style='width:100' class='style_input' value='".$row["tincidencia"]."'>";
echo "<b> Estado: </b>";
echo "<input type=text name=estado style='width:100' class='style_input' value='".$row["estado"]."'>";
echo "<br></br>";
echo "<b> Descripcion: <b>";
echo "<br><textarea name=tdescripcion cols='60' rows='5' class='style_input' id='txtdescripcion'>".$row["descripcion"]."</textarea></br>";
echo "Observaciones:";
echo "<br><textarea name=observaciones cols='60' rows='5' class='style_input' id='txtdescripcion'>".$row["observaciones"]."</textarea></br>";
echo "Solucion:";
echo "<br><textarea name=solucion cols='60' rows='5' class='style_input' id='txtdescripcion'>".$row["solucion"]."</textarea></br>";
}

?>


Muestra todos los valores en textbox. Ok? Lo que quiero que aquí pueda modificar o borrar el registro. Entonces debajo he puesto dos botones:

<input type="button" name="btnnuevainci" id="btnnuevainci" style='width:130' class="btnnuevainci" value="Modificar Incidencia" onClick=
/>
</td>
<td><input type="button" name="btnnuevainci2" id="btnnuevainci2" class="btnnuevainci" value="Borrar Incidencia" onClick="opcion();" /></td>
</tr>

El borrado lo hago perfectamente pero la modificacion no se como hacerla.

Gracias.