by vysakh b.
Hi
Here is my code for webservice
<?php
$user = $_REQUEST['name'];
$password = $_REQUEST['password'];
$query = "CALL ws_login_type('".$user."','".$password."')";
$procedure =_fetch_multi_result($query);
?>
after getting the password I want to encrypt and send in the stored procedure I am calling there
Please help me to find a solution for this