Forse non mi sono spiegato bene....
se inserisco input type all'interno del while come dici tu, stampo ,ovviamente, tutti i codici presenti nella colonna!!!
A me serve solo il codice che ho selezionato nella select.
Ad esempio se nella select seleziono un codice con descrizione nell'input type deve comparire solo quel codice selezionato, non tutti i codici come dici tu.
Spero di essere stato più chiaro...
Grazie per la risposta.
Ti invio il sorgente della pagina:
codice:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <script type="text/javascript" src="ora/jquery-1.7.1.min.js"></script> <link rel="stylesheet" media="all" type="text/css" href="ora/jquery-ui-1.8.16.custom.css" /> <script type="text/javascript" src="ora/jquery-ui-1.8.16.custom.min.js"></script> <script type="text/javascript" src="ora/jquery-ui-timepicker-addon.js"></script> <script type="text/javascript"> $(function(){ $('.example-container > pre').each(function(i){ eval($(this).text()); }); }); </script> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Prenota</title> </head> <body> <script type="text/javascript"> var xmlhttp; function mostraInfo(str) { xmlhttp=GetXmlHttpObject(); if (xmlhttp==null) { alert ("Browser does not support HTTP Request"); return; } var url="#"; url=url+"?q="+str; xmlhttp.onreadystatechange=stateChanged; xmlhttp.open("GET",url,true); xmlhttp.send(null); } function stateChanged() { if (xmlhttp.readyState==4) { document.getElementById("info").innerHTML=xmlhttp.responseText; } } function GetXmlHttpObject() { if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari return new XMLHttpRequest(); } if (window.ActiveXObject) { // code for IE6, IE5 return new ActiveXObject("Microsoft.XMLHTTP"); } return null; } </script> <form method="post" action="#" id=settimana> <label><h1>Prenota Analisi</h1></label> <label> Seleziona Paziente: </label> <select name="tipopaz" onChange="mostraInfo(this.value)"> --> Notice: Undefined index: id in C:\xampp\htdocs\LDM\Prenota.php on line 116 <option value=''>ytrfg78iopjmkgfr pippo paperino</option> Notice: Undefined index: id in C:\xampp\htdocs\LDM\Prenota.php on line 116 <option value=''>dadadasdasd </option> Notice: Undefined index: id in C:\xampp\htdocs\LDM\Prenota.php on line 116 <option value=''>trfd34rfghyt5654 Alfredo</option> </select> <legend>Giorno: </legend> <select name="settimana" > <option value="Lunedì" selected="selected" >Lunedì </option> <option value="Martedì">Martedì </option> <option value="Mercoledì">Mercoledì </option> <option value="Giovedì">Giovedì </option> <option value="Venerdì" >Venerdì </option> <option value="Sabato">Sabato</option> <option value="Domenica">Domenica</option> </select> <div class="example-container"> Inserire Ora</p> <div> <input type="text" name="example3" id="example3" value="" /> </div> <script> $('#example3').timepicker({}); </script> </div> <label> Tipo Prestazione: </label> <select name="tipoprest" onChange="mostraInfo(this.value)"> Notice: Undefined index: id in C:\xampp\htdocs\LDM\Prenota.php on line 152 <option value=''>AA01 PRELIEVO MICROBIOLOGICO </option> Notice: Undefined index: id in C:\xampp\htdocs\LDM\Prenota.php on line 152 <option value=''>AA02 PRELIEVO SANGUE ARTERIOSO </option> Notice: Undefined index: id in C:\xampp\htdocs\LDM\Prenota.php on line 152 <option value=''>AA03 PRELIEVO SANGUE VENOSO </option> Notice: Undefined index: id in C:\xampp\htdocs\LDM\Prenota.php on line 152 <option value=''>AA04 5 IHA </option> Notice: Undefined index: id in C:\xampp\htdocs\LDM\Prenota.php on line 152 <option value=''>AA05 17 OH-PROGESTERONE </option> Notice: Undefined index: id in C:\xampp\htdocs\LDM\Prenota.php on line 152 <option value=''>AA06 A1GLICOPROTEINA ACIDA </option><input type="text" name="codice" value="" /> </select> <input type="submit" name="invia" id="inv" value="Invia" /> </form> </body> </html>

Rispondi quotando