Hi guys i m try to make a combobox with json but cant do this righ
Jquery function
$("select#selest").change(function(){
$("select#reccid").html('<option value="">Carregando...</option>');
$.getJSON("/inc/geraCidades.php",{estado: $(this).val()}, function(resposta){
if(resposta === null){
var options = '<option value="">-</option>';
}
else{
var options = '<option value="">-</option>';
$.each(resposta, function(key, val) {
options += '<option value="' + key + '">' + val + '</option>';
});
}
$("select#reccid").html(options);
})
})
My php file
<?
header("Content-Type: application/json");
include("config.php");
$Estado_Id = mysql_real_escape_string($_REQUEST["estado"]);
$Sql01 = "SELECT * FROM tabcidades WHERE Estado_Id = '$Estado_Id' ORDER BY Cidade_Nome ASC";
$Query01 = mysql_query($Sql01, $Conn);
while($Rs01 = mysql_fetch_array($Query01)){
//if($Rs01["Cidade_Id"] == $Cidade_Id) $selected = "selected";
//else $selected = "";
$array[] = array('key' => $Rs01['Cidade_Id'], 'val' => $Rs01['Cidade_Nome']);
}
echo json_encode($array);
?>
the return come only object
Thanks for any help