Click here to Skip to main content
15,860,972 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends,

How to send a request to my webservice in php from browser securely eg: if i want to authenticate emailid and password who wants to login my site.User provide his emailid and password now I dont want any one to tamper my emailid amd password that user has send while login.

I want this emailid and password not to be seen in browser as a query string with parameters.

eg when i say submit to login form my browser shows

http://localhost/myapp/Login.php?emailid=abc@gmail.com&password=abc

Is there any way to send this parameters to server in secure way to server....
Posted

1 solution

Hi,

Try this:

Your submit form:
HTML
<form action="http://localhost/myapp/Login.php" method="post">
Email ID: <input type="text" name="emailid" id="emailid" /><br />
Password: <input type="password" name="password" id="password" /><br />
<input type="submit" value="Log in" />
</form>

Now, in Login.php, you can get the values using $_POST:
http://php.net/manual/en/reserved.variables.post.php[^]
http://www.w3schools.com/php/php_post.asp[^]
PHP
<?php
$emailid = $_POST['emailid'];
$password = $_POST['password'];
?>

Hope this helps.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900