4.
PHP基本語法
- PHP基本寫法:
<?php
echo "Hello World!";
-
請存到網頁目錄,如:E:\UniServerZ\www\index.php
-
PHP程式的副檔名一律為.php
-
PHP程式碼必須放在<?php和?>的起始標記和結束標記符號中。
-
若是該檔案中只有純粹的PHP語法,並沒有其他的HTML語法,那麼,就不建議加上「?>」符號
<?php
$title = "待辦清單123";
$header = "我的待辦事項清單dsda";
?>
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/fontawesome_css/all.css">
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<title><?php echo $title; ?></title>
</head>
<body>
<div class="container">
<img src="images/logo.jpg" class="rounded-circle mx-auto d-block" width="100%" height="200rem" alt="logo">
<nav class="navbar navbar-expand-sm navbar-dark bg-primary">
<a class="navbar-brand" href="#">
<h1><?php echo $header; ?></h1>
</a>
//以下省略
-
echo是PHP用來輸出資料的語言結構(不是函數),常用。
-
在PHP中,凡是資料類型是字串的都必須用引號包起來,用雙引號或單引號都可以。
-
每一個PHP語句後要加上「;」結尾。
-
開啟瀏覽器,在網址列輸入「http://localhost/index.php」或「http://127.0.0.1/index.php」