Advertisement
Guest User

Untitled

a guest
Nov 11th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. class Post_Validations {
  2. protected $mysqli;
  3. protected $URI;
  4. public $_POST;
  5. public function __construct(){
  6. $this->_SQL = new mysqli("");
  7. $this->URI = $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
  8. }
  9. public function RegisterForm(){
  10. print_r($this->_POST);
  11. }
  12. public function FormID($FormID){
  13. echo $FormID;
  14. if ($FormID === 192){
  15. echo "Yay";
  16. }
  17. }
  18.  
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement