In my application I have used GET method
to send data
over URL
in many places. I think it is a not secure
way to send data over the URL
. Just the data are showing in URL
.
Ex:
<a href="check_appointments.php?user=<?php echo $_GET['userid'] ?>&p_id=<?php echo $_GET['pid'] ?>"> </a>
I want to transfer data in secure
way. Is there any way to hide
these information or any encryption
method to follow. Please someone help me to improve my codes. Any help may highly appreciated.