私はPHPにクラスを持っています、そしてそれを呼び出すとき、関数__construct($_POST)
はプロセスでなければなりません。
__construct()
関数は次のように定義します:
// Constructor Function
function __construct($_POST){
$this->customer = trim($_POST['customer']);
$this->CreateDate = date('Y/m/d');
}
クラスで関数を呼び出すと、その関数が処理されてデータベースに挿入されますが、このマッサージが表示されます:-
Missing argument 1 for Draft::__construct(), called in ....
私のコードの何が悪いのか
ありがとう