先貼代碼
<?php function table(){ echo "<table align='center' border='1' width='600' cellspacing='0';>"; echo "<caption><h1>這是表格的標題</h1></caption>"; for($out=0; $out < 10; $out++ ){ $bgcolor = $out%2 == 0 ? "#ffffff" : "green"; $fontcolor = $out%2 == 0 ? "#ffffff" : "#000000"; echo "<tr bgcolor=".$bgcolor.">"; for($in=0;$in<10;$in++){ echo "<td>".($out*10+$in)."</td>"; }; echo "</tr>"; }; echo "</table>"; } table(); ?>
這是一段 PHP 定義函數的代碼
tips:
1、注意PHP 的語法格式
2、注意在PHP 中插入Html 代碼的方式
3、利用for 循環的時候,注意想清楚,外部循環和裡部循環 的差異性