I am new to PHP.
I have a page that displays user profile. I need to pass user id to this page so that correct profile was displayed.
I just dont use the <form> element. I want to have a link
<a href="/users/24378234298734"> or <a href="/users/?id=24378234298734">
or whatever
Since I am not using form I cannot use _GET or _POST on the handler page What is the best way to handle the parameters on handler page?
?id=24378234298734is a _GET.