Hi,
I would like to know how I could get the URL of the document I'm in, in a variable?
Explanation:
to get to a document, the url is http://www.[...]/menu.php?user=casimir
I want to be able to do:
$page = FUNCTION_TO_GET_URL();
// $page = http://www.[...]/menu.php?user=casimir
echo '<a href='.$page.'&var=1>Change something</a>';
And I'm looking for the FUNCTION_TO_GET_URL() if it exists.