In my website, there's a user's profile page. What I have currently doing is just pass the user ID
via a GET
request and use it to query the user's details.
So, the user profile URL is like this...
http://www.example.com/user.php?id=345
So, my problem is that, is it safe to show this user's ID (Primary key of the user table) in the URL so, that anyone can see it... ?