少しBigData貯めてみようかと。。。RaspberyyPiの容量大丈夫かな・・まっいいか。
場所は、/var/www/html
ファイルは、ras_gra/20170504_tmp_cnt.php
URLは、http://ik1-313-16602.vs.sakura.ne.jp/ras_gra/20170504_tmp_cnt.php
以下コードーーーーー
<?php
//MySQLに接続し、データベースを選択します。
$conn = mysql_connect(‘ik1-313-16602.vs.sakura.ne.jp’,’root’,’Aa1234567890′) or die(mysql_error());
mysql_select_db(‘20161129_sensor’) or die(mysql_error());
//MySQLに接続し、データベースを選択します。
$conn = mysql_connect(‘ik1-313-16602.vs.sakura.ne.jp’,’root’,’Aa1234567890′) or die(mysql_error());
mysql_select_db(‘20161129_sensor’) or die(mysql_error());
//SQLクエリを実行します。
$res = mysql_query(‘SELECT * from t_sensor where water_need=”insert real data” order by Num DESC’) or die(mysql_error());
$res = mysql_query(‘SELECT * from t_sensor where water_need=”insert real data” order by Num DESC’) or die(mysql_error());
//SQLクエリを実行します。(カウント追加2016/12/30)
$res1 = mysql_query(‘SELECT count(*) from t_sensor where water_need=”insert real data”‘) or die(mysql_error());
$res1 = mysql_query(‘SELECT count(*) from t_sensor where water_need=”insert real data”‘) or die(mysql_error());
//結果を出力します。
while ($row1 = mysql_fetch_array($res1, MYSQL_NUM)){
echo “vpsのt_sensor件数は、<br />\n”;
echo $row1[0].”\t”;
echo “<br />件です。<br />\n”;
echo “——————\n<br>”;
}
while ($row1 = mysql_fetch_array($res1, MYSQL_NUM)){
echo “vpsのt_sensor件数は、<br />\n”;
echo $row1[0].”\t”;
echo “<br />件です。<br />\n”;
echo “——————\n<br>”;
}
while ($row = mysql_fetch_array($res, MYSQL_NUM)){
echo $row[0].”\t”;
echo $row[1].”\t”;
echo $row[2].”\n”;
echo $row[3].”\n”;
echo $row[4].”\n”;
echo $row[5].”\n”;
echo $row[6].”\t”;
echo $row[7].”\n”;
echo $row[8].”\n”;
echo $row[9].”\n”;
echo $row[10].”\n”;
echo “<br />\n”;
echo “——————\n<br>”;
}
echo $row[0].”\t”;
echo $row[1].”\t”;
echo $row[2].”\n”;
echo $row[3].”\n”;
echo $row[4].”\n”;
echo $row[5].”\n”;
echo $row[6].”\t”;
echo $row[7].”\n”;
echo $row[8].”\n”;
echo $row[9].”\n”;
echo $row[10].”\n”;
echo “<br />\n”;
echo “——————\n<br>”;
}
//結果セットを開放し、接続を閉じます。
mysql_free_result($res);
mysql_close($conn);
mysql_free_result($res);
mysql_close($conn);
?>
以上ーーーーー