I have a select field. I must fill with options taken from a mysql table.
Here is some little php code I have done using codeigniter framework
$idcateg = trim($this->input->post('idcategory'));
$array1 = array(
'result' => $idcateg
);
echo json_encode($array1);
Şimdi, jQuery çağrı ...
$.post("<?=base_url()?>index.php/rubro/list_ajax/", {
'idcategory' : idc },
function(data){
alert(data.result);
}, "json");
The code works fine. When I call the post, I get the categoryid as a result.
Now, I should modify the code above, so I can do:
- kategori id gönderme ajax çağrısı. Bu yapıldıktan
- * Bu kategori için alt kategoriler olsun ve dizi oluşturmak
- json_encode dizi ve yankı *
- geri jQuery ajax arama, çözümleme sonuçları almak ve inşa < *> alan seçin
The array should be built with each element having a sub-array with id ve name, right? Thanks a lot in advance for any help