私はこの情報のテーブルを持っています:
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