Welcome Guest, Not a member yet? Register   Sign In
getJSON in CI problem
#1

[eluser]Mitja B.[/eluser]
Code:
$izb = $_GET['izb'];
switch($izb)
{
    
case $izb :    
    $sql = $db -> select("SELECT * FROM " . DB_PREDPONA . "lastminute_mesta WHERE drzava= '".$_GET['izb']."'");
    while ($row = $sql ->fetchrow())
    {    
        $id = $row['id'];
        $ime = $row['mesto'];
        $array[$id] = $ime;
    }
    break;
}

echo json_encode($array);


Code:
/* getJSON */
function spremeniVrednost()
{
    $.getJSON("ajax.php",
      { izb: $("#select1").val()},
      function(json){
          $("#select2").removeOption(/./);
        $("#select2").addOption(json);
        }
    );
}


how can i import this in CI. I have no idea how tu use getJSON in CI.


Messages In This Thread
getJSON in CI problem - by El Forum - 09-21-2008, 11:15 AM
getJSON in CI problem - by El Forum - 09-21-2008, 01:55 PM
getJSON in CI problem - by El Forum - 09-22-2008, 12:44 AM
getJSON in CI problem - by El Forum - 09-22-2008, 03:29 PM
getJSON in CI problem - by El Forum - 09-23-2008, 01:02 AM
getJSON in CI problem - by El Forum - 09-30-2008, 01:29 AM
getJSON in CI problem - by El Forum - 09-30-2008, 02:52 AM
getJSON in CI problem - by El Forum - 09-30-2008, 05:02 AM
getJSON in CI problem - by El Forum - 09-30-2008, 10:24 AM
getJSON in CI problem - by El Forum - 10-09-2008, 03:12 PM
getJSON in CI problem - by El Forum - 10-10-2008, 05:45 AM
getJSON in CI problem - by El Forum - 10-10-2008, 08:46 AM
getJSON in CI problem - by El Forum - 10-10-2008, 10:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB