Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. protected $_user_id,$_first_name,$_last_name,$_u_name,$_u_email,$_u_password,$c_password,$_u_address,$_p_number;
  2.  
  3. public function __construct($dbRow) {
  4. $this->_user_id = $dbRow['user_id'];
  5. $this->_first_name = $dbRow['first_name'];
  6. $this->_last_name = $dbRow['last_name'];
  7. $this->_u_name = $dbRow['u_name'];
  8. $this->_u_email = $dbRow['u_email'];
  9. $this->_u_password = $dbRow['u_password'];
  10. $this->c_password = $dbRow['u_cpassword'];
  11. $this->_u_address = $dbRow['u_address'];
  12. $this->_p_number =$dbRow['p_number'];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement