joris

Last Code

Nov 27th, 2012
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2. date_default_timezone_set("Asia/Jakarta");
  3. require_once('lib/nusoap.php');
  4.  
  5. $Email      = $_GET['email'];
  6. $Password   = $_GET['pass'];
  7.  
  8. $Param1 = "[email protected]";
  9. $Param2 = "malaquena";
  10.    
  11. $client = new nusoap_client('http://vcare.telkomvision.net.id/services/VcareServices.php');
  12. $BacaSOAP = $client->call('validateLogin', array('EMAIL' => $Param1, 'PASSWORD' => md5($Param2)));
  13.  
  14. echo "<pre>";
  15. print_r($BacaSOAP);
  16. echo "</pre>";
  17.  
  18.    
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment