我遇到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个不同的变量中得到它。我该怎么办?