PHP/Design Patterns/Request Info — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 07:03, 26 мая 2010
Содержание
For GET requests, the encoded data send appended to the URL
<?
echo getenv("$QUERY_STRING");
?>
The address of the page from which the request was made
<?
echo getenv("$HTTP_REFERER");
?>
The full address of the request including query string
<?
echo getenv("$REQUEST_URI");
?>
Whether the request was GET or POST
<?
echo getenv("$REQUEST_METHOD");
?>