13 lines
200 B
PHP
13 lines
200 B
PHP
<?php
|
|
|
|
class Fo extends MY_Controller
|
|
{
|
|
public function index()
|
|
{
|
|
echo "GET:\n";
|
|
print_r($_GET);
|
|
echo "body:\n";
|
|
echo file_get_contents("phpinput://");
|
|
}
|
|
}
|