Here I have the code that works with the select ... but I can not get it to the input text.
<div class="form-group">
<input type="text" value="" name="nombrecliente" id="nombrecliente"
class="form-control input-lg" autocomplete="off" placeholder="Nombre Cliente"/>
<?php //*--conexion*//
$mysqli = new mysqli('localhost', '*********', '*****', '********');
mysqli_set_charset($mysqli, "utf8"); //*--conexion*//
$query = $mysqli->query("SELECT * FROM clientesguaca"); //*--variable
llamadatos*//
while ($valores = mysqli_fetch_array($query)) {
echo '<input value="' . $valores[nombrecliente] . '">' .
$valores[nombrecliente] . '</>';
}
?>
</div>