Advertisement
corovino

controller problem php

Feb 7th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. <?php
  2.  
  3. require_once("../Model/registro.php");
  4.    
  5.  
  6.  
  7.       $username =$_POST["username"];
  8.       $email =$_POST["email"];
  9.       $password =$_POST["password"];
  10.       $confirm_password =$_POST["confirm_password"];
  11.      
  12.        
  13.      $reg = new Registro();
  14.  
  15.      $t=$reg->registrar($username,$email,$password,$confirm_password);  
  16.      
  17.      var_dump($t);
  18.      
  19.     if($t != 1){
  20.        
  21.        
  22.         return $t;
  23.     }else{
  24.         return $t;
  25.        
  26.      }
  27. //------------------------------------------------------------------------------------------
  28. Respuesta en pantalla al correr directamente  COntrollers/registro.php
  29.  
  30.  
  31. string(20) "soy dieferente de uno"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement