iT邦幫忙

2022 iThome 鐵人賽

DAY 3
0
Modern Web

Collage版的web寫法就是大雜燴系列 第 3

DAY3-語法開始~HELLO

  • 分享至 

  • xImage
  •  

這裡是空白的語法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>


如果要看註解的話就是~
https://ithelp.ithome.com.tw/upload/images/20220903/201190358gIoBVrKVj.png

回到已經有填的樣子-
https://ithelp.ithome.com.tw/upload/images/20220903/20119035u5MIOyD7rg.png

那裡面的CODE就是寫成-

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>我是網頁標題</title>
</head>
<body>
123
<hr> 

<em>123</em>

</body>
</html>

但是因為這裡只是要先確認一下VSCODE有沒有裝好~
主題是寫PHP~後面PHP都走完~ 真的撐不到30天再來寫前端

先來講講留言板- http://jzs2home.byethost15.com/index.php?i=2

會用到的檔案有哪些-
https://ithelp.ithome.com.tw/upload/images/20220903/20119035cSKt9aJ6Ug.png

基本上 PHP檔案~初學都是放在 C:\xampp\htdocs
然後這裡C:\xampp\htdocs\MY_GBOOK是指放在 MY_GBOOK這個資料夾

這其中最重要的語法是detail.php裡面的-

<!DOCTYPE html>
<html lang="zh-Hant-TW">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>細節頁面</title>
</head>

<body>
    <?php include_once("menu.php") //掛選單 
    ?>
    <h1>細節頁面</h1>
    <?php
    include_once('connSQL.php');
    //連線資料庫

    $selectSQL = "SELECT * FROM  gbook WHERE gid = '$_GET[id]'";
    //來一段SQL的SELECT語法吧

    $myData = $myconnect->query($selectSQL);
    //執行上面那段SQL語法並將所得資料放進 $myData

    if ($myData->num_rows > 0) {
        //有資料筆數大於0時才執行
        $row = $myData->fetch_assoc();
        //將陣列資料中的Key值設定為該欄位的欄位名稱,並依序放進$row中   
        echo "發表人" . $row["gbook_poser"] . "<br>";
        echo "主題類型" . $row["gbook_kind"] . "<br>";
        echo "發表主題" . $row["gbook_title"] . "<br>";
        echo "發表內容" . $row["gbook_msg"] . "<br>";
        echo "發表時間" . $row["gbook_date"] . "<br>";
    } else {
        //沒有資料時顯示
        echo '沒有資料';
    }

    ?>
</body>

</html>

如果直接只講這個 感覺已經結束~汗~!
/images/emoticon/emoticon06.gif

所以先從 簡單的開始~就是每個語言都要會的HELLO


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <?php

    $myhello ="HELLO";
    echo $myhello;


    ?>
</body>
</html>

注意這裡是要存成php檔~不是html檔喔~不然<會反紅

可以用EDGE打開~按網址
http://localhost:8012/myphp/20220903.php

看看長的樣子
https://ithelp.ithome.com.tw/upload/images/20220903/20119035hwknjjbRLh.png

來細講一下裡面的語法—

<?php

    $myhello ="HELLO";
    echo $myhello;

    ?>

Php會去解釋

<?php    ?>

會呼叫 echo

結束用 ;

颱風天~ 祝大家平平安安~/images/emoticon/emoticon24.gif


上一篇
DAY2-環境安裝-
下一篇
DAY4-語法-從時間變數~
系列文
Collage版的web寫法就是大雜燴30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言