13/09/2008, 15:05
|
| | Fecha de Ingreso: mayo-2007
Mensajes: 23
Antigüedad: 17 años, 6 meses Puntos: 0 | |
Respuesta: Se puede hacer con AJAX?? Ayudita por favor y este es el codigo de la consulta en php:
<?
include('../../dbconnect.inc.php');
if(isset($_GET['getCountriesByLetters']) && isset($_GET['letters'])){
$letters = $_GET['letters'];
$letters = preg_replace("/[^a-z0-9 ]/si","",$letters);
$res = mysql_query("select concat(id,' - ',titulo) as articulo, id from articulo where (titulo like '%".$letters."%') or (id like '".$letters."%') ") or die(mysql_error());
#echo "1###select ID,countryName from ajax_countries where countryName like '".$letters."%'|";
while($inf = mysql_fetch_array($res)){
echo $inf["id"]."###".$inf["articulo"]."|";
}
}
?> y el formulario donde veo el autocompletar y donde necesito llevar los datos del serial y el valor:
<form name="formu" action="guardafact.php" method="get"><tr>
<td class="celda">Ayuda</td><td class="celda" width="110">
<p align="center">Articulo</td><td class="celda" width="" align="center">Seriales</td>
<td class="celda" width="69">Cantidad</td><td class="celda" width="107">Vr Unidad</td></tr>
<tr><td>
<p align="center"><input type="button" value="?" name="sizewindow" onclick="SizeWin()">
</td><td class="texto" width="" align="center" valign="middle">
<input type="text" id="articulo" name="articulo" value="" onkeyup="ajax_showOptions(this,'getCountriesByLett ers',event)" size="56">
<input type="hidden" id="articulo_hidden" name="id_art">
<input type="hidden" name="dato" value='<? echo $dato;?>'>
<input type="hidden" name="fecha" value='<? echo $fecha;?>'>
<input type="hidden" name="id_fact" value='<? echo $id_fact;?>' size="6"></td>
<td class="texto" width="">
<p align="center">
<input type="text" name="serial" style="font-size: 10px" size="6" ></td>
<td class="texto" width="69"><input type="text" name="cant" style="font-size: 10px" size="6" ></td>
<td class="texto" width="107"><input type="text" name="valor" style="font-size: 10px" size="19" ></td>
<td width="68"><input type="submit" value="Agregar" name="submit" style="font-family: Verdana; font-size: 10px">
</td></tr></form> |