我有一张包含以下信息的表格:
id ctype weeknum daynum posting
1 2 2 3 15.55
2 2 4 5 60.50
3 2 15 1 10.00
4 2 17 2 100.55
我希望使用此循环在正确的行和列上使用“发布”。
for($row=1;$row<=52;$row++) // 52 weeks in a year
{
for($col=1;$col<=7;$col){ // 7 days in a week
$query=mysql_query("select * from table where ctype=2");
$weekday=mysql_fetch_array($query);
if($row==$weekday['weeknum'] && $col==$weekday['daynum']){
echo "<input type='text' value'".$posting['posting']."' />";
} else {
echo "<input type='text' />"; // will display a blank textbox
}
}
}
这样的事情是我想要实现的。http://tvends.com/sample/sample.jpg