程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 今天更新點心的內容---php,更新點心---php

今天更新點心的內容---php,更新點心---php

編輯:關於PHP編程

今天更新點心的內容---php,更新點心---php


先貼代碼

<?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 循環的時候,注意想清楚,外部循環和裡部循環 的差異性

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved