私はこのコードを持っています:
$i=0;
$start_date = date("Y/m/d");
$end_date = date('Y/m/d', strtotime($start_date . " -7 days"));
while($days7=mysql_fetch_assoc($q)):
$next_date = strtotime($i--." days", strtotime($start_date));
$date = date("Y/m/d",$next_date);
#Let's get the latest click combined from the latest 7 days
$combined7=mysql_query("SELECT sum(value) FROM `xeon_stats_clicks` WHERE user='".$userdata['username']."' AND typ='4' AND data='$date' ORDER BY data DESC LIMIT 8") or die(mysql_error());
print mysql_num_rows($combined7);
endwhile;
取得している行数を確認する必要があります$combined7
。現在、私は使用していますprint mysql_num_rows($combined7);
が、出力するだけです: 1 1 1 1 1 (各行の数字「1」)
総数はどうやって数えればいいですか?
(PS $i は 0 に設定する必要があります)