获取价值形式文本框oop方式

时间:2015-03-12 10:26:07

标签: php oop

这是我的方法,我正在获得价值。一切都很好,但我想用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');
    }

}

0 个答案:

没有答案