created_at
2 つの日付の間に日付がある行の数を表示しようとしています。
これが私のコードです:
$result=mysql_query("select * from payments
where created_at between '2013/10/01 00:00:00' and '2013/10/30 00:00:00'")
or die('You need to add an administrator ' );
$counter = mysql_query("select * from payments
where created_at between '2013/10/01 00:00:00' and '2013/10/30 00:00:00'");
$row = mysql_fetch_array($result);
$id = $row['id'];
$num = mysql_fetch_array($counter);
$countjan = $num["id"];
しかし、私がエコーするとき
<?php echo"$jan";?>
これは、これを0
機能させる方法を示しています
Ps この日付範囲内に 1 行あります