返回列表 發帖

我的第一個PHP網頁

  1. <html>
  2.         <head>
  3.                 <title>我的第一個PHP網頁</title>
  4.                 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5.         </head>
  6.         <body>
  7.         <?php
  8.                 echo "<center>";
  9.                 echo "<h2>陋室銘</h2>";
  10.                 echo "<hr color='green'><p/>";
  11.                 echo "山不在高,<br/>";
  12.         ?>
  13.                 有仙則名;<p/>
  14.                 水不在深,<br/>
  15.                 有龍則靈.<p/>
  16.                 </center>
  17.         </body>
  18. </html>
複製代碼

返回列表