这是我的方法,我正在获得价值。一切都很好,但我想用OOP获取价值。
比如Classname :: methodname(文本框的名称)这样。我怎么能这样做?
public function display()
{
$name=$_POST['name'];
$b=$_POST['email'];
$c=$_POST['pass'];
$d=$_POST['rpass'];
$e=$_POST['phone'];
$t=new User();
$t->findEmail($b);
$tt=$t->num_count();
if($tt==0)
{
$t->username=$name;
$t->email=$b;
$t->pass=$c;
$t->phone=$e;
$t->save();
// $ii=new Redirect();
Redirect::to('register/success');
}
else
{
Redirect::to('register/Notsuccess');
}
}