paulbradley
Programmer
Is there a function to get whatever the URL of the current page is?
Thanks.
Thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
echo '<pre>';
print_r $_SERVER;
echo '</pre>';
?>
[code]
That will tell you what all the elements in the $_SERVER array are, you'll find what you need in there (along with other useful bits).