mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-13 14:45:09 +00:00
6 lines
157 B
PHP
6 lines
157 B
PHP
<?php
|
|
echo "<a href='page.php'>Ссылка на страницу PHP</a><br />";
|
|
if(isset($_SERVER['HTTP_REFERER'])) {
|
|
echo $_SERVER['HTTP_REFERER'];
|
|
}
|