while ($row = mysql_fetch_array($sqlquery))
{
$fd = strtotime($row['date1']);
$sd = strtotime($row['date2']);
$dates = floor(($sd - $fd ) / 86400);
$price = $dates * 25;
}
$price
我想为每一行插入另一个表。我不能用一个插入来做到这一点,因为$price
每次都不同。