線上書籍

Home

網頁前端設計與開發運用培訓班

一、Hello World
  1. 位置:xampp/htdocs/index.php <?php echo "Hello World";

     

  2. 執行:http://localhost/index.php
二、範例
  1. ch2_3_1.php:取得 Apache網站伺服器 相關資訊 <?php phpinfo();

    請看到「PHP Variables」

  2. ch2_3_2.php:在html中嵌入php語法 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>在html中嵌入php語法</title> </head> <body> <?php echo "我的第一支php程式" ?> </body> </html>
  3. ch2_3_3.php:引入外部檔案 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>在html中嵌入php語法</title> </head> <body> <?php include "ch2_3_3_include.php"; ?> </body> </html>

    ch2_3_3_include.php

    <?php echo "我的第一支php程式2" ?>