I have a page [page A] that sends variable values to another page[page B]. Currently, I have been using the $_GET
method to get the values from [page A] on [page B]. This is how the url in [page A] looks like
$id=2;
<a href="pageB.php?id=$id">Goto Page B</a>
and on [Page B]
$id=$_GET['id'];
echo $id;
In this way I perfectly receive the value of the id from [page A] on [page B].
My questions is, would be possible to receive the value of the id from [page A] onto [page B] without adding ?id=$id
to the url in [page A] ?
Please if yes, how can I do this. Thanks