What's the Perl equivalent for the following PHP calls?
$_SERVER["HTTP_HOST"]
$_SERVER["REQUEST_URI"]
Any help would be much appreciated.
|
|
|
Environment variables are a series of hidden values that the web server sends to every CGI you run. Your CGI can parse them, and use the data they send. Environment variables are stored in a hash called %ENV. like
For more details see CGI Environmental variables |
|||
|
|
|
Another way, than variable environement, is to use CGI :
Moreover, it also offers a lot of CGI manipulation such as accessing params send to your cgi, cookies etc... |
|||
|
|
|
What's the environment you're working in? If it's CGI script try:
|
|||||||
|