Tengo el siguiente código:
Código PHP:
Ver original
$query = $db->query("SELECT Nombre_med FROM Med_Medicamentos WHERE Nombre_med LIKE '$queryString%' LIMIT 10"); if($query) { // While there are results loop through them - fetching an Object (i like PHP5 btw!). while ($result = $query ->fetch_object()) { // Format the results, im using <li> for the list, you can change it. // The onClick function fills the textbox with the result. // YOU MUST CHANGE: $result->value to $result->your_colum echo '<li onClick="fill(\''.$result->Nombre_med.'\');">'.$result->Nombre_med.'</li>'; }
Hasta ahi el codigo funciona bien, elproblema es que necesito sacar ademas del nombre la forma farmaceutica del medicamento.
Estoy pasandome a PHP 5 y apenas estoy entendiendo, alguien que me colabore porfa.
Mil Gracias
Angelik