Ver Mensaje Individual
  #5 (permalink)  
Antiguo 09/07/2015, 15:59
Jokibu
 
Fecha de Ingreso: julio-2015
Mensajes: 7
Antigüedad: 9 años, 4 meses
Puntos: 0
Respuesta: Ventana de busqueda en misma pagina

Hola , ya he echo la busqueda que me sale en la misma pag sin borrar el formulario, pero cuando le doy a aceptar me carga la busqueda pero se me borra el formulario, a ver si alguien me echa un cable.
Aqui el form
<?php
session_start();
?>

<form id="form1" name="datos" method="post" action="alta_material2.php">
<table width="562" border="2">
<tr>
<td scope="col"><label>TIPUS</label></td>
<td scope="col"><select name="tipus" id="tipus">
<option value="1" selected="selected">Planxa</option>
<option value="2">Cargolatge</option>
<option value="3">Perfileria</option>
<option value="4">Varis</option
</select></td
</tr>
<tr>
<td><label>DESCRIPCIO</label></td>
<td><input name="descripcio" type="text" id="descripcio" value="" /></td>
</tr>
<tr>
<td><label>PREU</label></td>
<td><input type="text" name="preu" id="preu" /></td>
</tr>
<tr>
<td><label>GRUIX</label></td>
<td><input type="text" name="gruix" id="gruix" /> </tr>
<tr align="left">
<th width="185" scope="col">PROVEÏDOR</th>
<th width="155" scope="col"><input type="text" name="cerca" value="<?php if(isset($_SESSION["nom_prov"])){echo $_SESSION["nom_prov"];}
else {echo "";}
unset($_SESSION["nom_prov"]); ?>" id="cerca" />

<input type="button" value="Buscar" onclick="enviar()" />
</tr>
</table>
<input type="submit" name="button" id="button" value="crear" />
</form>
<div id="comp">
</div>
</body>