php教程 案例2

2021-10-23 16:53:02 字數 764 閱讀 7587

<?php

//字符集

header('content-type:text/html;charset=utf-8');

//定義常量,兩種方式

const discount = 0.9;

//define("discount",0.9);

//商品名稱

$fruit_banana = "香蕉";

$fruit_orange = "桔子";

//購買數量

$weight_banana = 2;

$weight_orange = 3;

//單價

$price_banana = 8.99;

$price_orange = 4.99;

//商品總價

$total_banana = $weight_banana * $price_banana;

$total_orange = $weight_orange * $price_orange;

//合計金額

//生成**

$str = "";

$str .= "商品名稱

購買數量(斤)

商品**(元)

";$str .= "

";";

$str .= "

";$str .= "折扣:".discount."

";$str .= "商品**合計:

";$str .= "";

echo $str;

2 PHP 教程 PHP 安裝

您需要做什麼?使用支援php的web的主機 如果您的伺服器支援php,那麼您不需要做任何事情.只要在您的web目錄中建立.php檔案即可,伺服器將自動為您解析這些檔案.您不需要編譯任何軟體,或安裝額外的工具.由於php是免費的,大多數的web主機都提供對php的支援.在您自己的pc機上建立php 然...

php教程 案例8(顯示訂單資訊)

case 8 顯示訂單資訊 header content type text html charset utf 8 多維陣列 goods array array name 主機板 price 779 producing 廣東 num 4 array name 顯示卡 price 1299 produ...

php教程 案例11(顯示員工資訊)

case 11 顯示員工資訊 建立資料表的sql語句 create table emp info emp id int unsigned auto increment primary key,emp name varchar 20 not null,emp dept varchar 20 not n...