name = $a1; $this->price = $a2; $this->num = $a3; } function __destruct(){ $this->name=NULL; $this->price=NULL; $this->num=NULL; } }// end class /////////////////////////////////// $myp = array(new product("阿Q桶麵",30,560), new product("可口可樂",15,150), new product("義美水餃",85,50), new product("鐵路便當",50,30)); $selname=""; $myprice = 0; $mynum = 0; $key =0; //讀取selection的數值////////////////////////////////////////////// if(isset($_POST['list01name'])){ $selname = $_POST['list01name']; while(list($i,$v) = each($myp)){ if($myp[$i]->name==$selname){ $myprice = $myp[$i]->price; $mynum = $myp[$i]->num; $key = $i; break; } }// end while }// end if isset ?> 範例12-5

查詢本店產品價格與庫存