使用PHP计算使用Web服务选择distinct

时间:2014-08-20 11:23:58

标签: php json rest

我遇到select distinct问题并计算我的数据。我在宁静的Web服务服务器端。我做了这样的服务:

private function grafik()
        {
            if($this->get_request_method() !="GET") 
                {
                    $this->response('',406);
                }
                    $sql   = "select distinct operating_system from data";
                    $query = $this->mysqli->query($sql) or die($this->mysqli->error.__LINE__);
                    //$query = mysql_query( $sql )  or die(mysql_error());
                    while( $ret = $query->fetch_array() ){

                    $os=$ret['operating_system'];

                    $sql_jumlah   = "SELECT * FROM data WHERE operating_system='$os'";  
                    $query_jumlah = $this->mysqli->query($sql_jumlah) or die($this->mysqli->error.__LINE__);

                         $data = mysqli_num_rows( $query_jumlah );
                            $jumlah = $mydata;
echo $jumlah;   
echo $os;

问题是我真的很困惑我如何通过

将不同变量的$jumlah$os带到客户端
$json = file_get_contents('http://localhost/proejct/services/server');

当我echo $json时,我在$jumlah上同时获得了$os$json,但我希望在2个不同的变量中得到它。我该怎么办?

0 个答案:

没有答案