Advertisement
Guest User

Untitled

a guest
Jul 5th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. $result = file_get_contents('http://localhost/service/service.php?action=register&name='.$name.'&lname='.$lname.'&email='.$email.'&username='.$username.'&password='.$password.'&gender='.$gender.'&mobile='.$mobile.'&address='.$address);
  2.  
  3. $name = urlencode($name);
  4. $lname = urlencode($lname);
  5. $email = urlencode($email);
  6. $username = urlencode($username);
  7. $password = urlencode($password);
  8. $gender = urlencode($gender);
  9. $mobile = urlencode($mobile);
  10. $address = urlencode($address);
  11.  
  12. $result = file_get_contents('http://localhost/service/service.php?action=register&name='.$name.'&lname='.$lname.'&email='.$email.'&username='.$username.'&password='.$password.'&gender='.$gender.'&mobile='.$mobile.'&address='.$address);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement