we can use $_GET method to pass info via url but it shows the info in url like
<a href =profile.php?id=$user>click here</a>
and in profile.php?id=$user , we can access username via
$username=$_GET['id'];
is there any safer method to achieve because i don;t want to show the info passed in url.
any help is appreciated.