Código PHP:
Ver original
<?php $bd = new mysqli("localhost", "root", "", "animales"); if($res = $bd->query("SELECT * FROM animales")) while($animal = $res->fetch_assoc()) 'label' => $animal['nombreComun'], 'value' => $animal['nombreCientifico'], 'estado' => $animal['conservacion'], ); $bd->close(); return; } ?> <html> <head> <link rel="stylesheet" href="jquery-ui-1.8.2.custom.css" type="text/css" media="all"/> <script type="text/javascript" src="jquery-1.4.2.min.js"></script> <script type="text/javascript" src="jquery-ui-1.8.2.custom.min.js"></script> <script type="text/javascript"> $(function() { $("#animal").autocomplete({ source: "animales.php?getAnimales=1", select: function(event, ui) { $('#conservacion').html(ui.item.label + " (" + ui.item.value + ") " + "tiene un estado de conservación de: " + ui.item.estado); } }); }); </script> </head> <body> <input type="text" id="animal"/> <p id="conservacion"></p> </body> </html>
espero puedan ayudarme o darme algun ejemplo de ayuda. gracias a todos!!