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

2021-10-23 17:32:27 字數 745 閱讀 5099

<?php

//case 8 顯示訂單資訊

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

//多維陣列

$goods = array(

array('name'=>'主機板','price'=>'779','producing'=>'廣東','num'=>4),

array('name'=>'顯示卡','price'=>'1299','producing'=>'深圳','num'=>2),

array('name'=>'硬碟','price'=>'689','producing'=>'金三角','num'=>5)

);//合計金額

$total = 0;

$str = "";

$str .= "商品名稱

**(元)

產地數量(件)

總價(元)";

//陣列一維

foreach($goods as $values)

"; }

//單行合計

$sum = $values['price'] * $values['num'];

$str .= "";

$str .= "";

//總額合計

$total += $sum;

}$str .= "小計:元

";$str .= "";

echo $str;

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...

php教程 案例14(分頁顯示資訊)

case 14 分頁顯示資訊 建立資料表的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...

php教程 案例2

字符集 header content type text html charset utf 8 定義常量,兩種方式 const discount 0.9 define discount 0.9 商品名稱 fruit banana 香蕉 fruit orange 桔子 購買數量 weight bana...