0
我收到以下錯誤,我詢問是否有人知道我爲什麼會得到這些錯誤的可能原因。我是新手,所以幫助將不勝感激... 我也將張貼有問題的路線。缺少參數和未定義的變量;錯誤的原因是什麼?
A PHP Error was encountered
Severity: Warning
Message: Missing argument 1 for Welcome::quote()
Filename: controllers/welcome.php
Line Number: 64
和
A PHP Error was encountered
Severity: Notice
Message: Undefined variable: productid
Filename: controllers/welcome.php
Line Number: 65
在考慮中的線;
64 function quote($productid){
65 if ($productid > 0){
66 $fullproduct = $this->MProducts->getProduct($productid);
67 $this->MQuotes->updateQuote($productid,$fullproduct);
68 redirect('welcome/product/'.$productid, 'refresh');
69 }else{
70 $data['title'] = '... | Quote';
..
.. if (count($_SESSION['quote']) == true){
.. $data['main'] = 'quote';
.. $data['navlist'] = $this->MCats->getCategoriesNav();
.. $this->load->vars($data);
.. $this->load->view('template');
.. }else{
.. redirect('welcome/index','refresh');
.. }
.. }
.. }
$ productid有什麼問題?
這可能不是函數的問題,但你是如何調用它的。 –