You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
441 B
PHTML
16 lines
441 B
PHTML
7 months ago
|
<?php
|
||
|
//parse the command line into the $_GET variable
|
||
|
if ( isset($_SERVER) && array_key_exists('QUERY_STRING', $_SERVER) ) {
|
||
|
parse_str($_SERVER['QUERY_STRING'], $_GET);
|
||
|
}
|
||
|
|
||
|
//parse the standard input into the $_POST variable
|
||
|
if (($_SERVER['REQUEST_METHOD'] === 'POST')
|
||
|
&& ($_SERVER['CONTENT_LENGTH'] > 0))
|
||
|
{
|
||
|
parse_str(fread(STDIN, $_SERVER['CONTENT_LENGTH']), $_POST);
|
||
|
}
|
||
|
|
||
|
chdir($argv[1]);
|
||
|
require_once $argv[2];
|