Files
BE_IBL/application/controllers/qdb/Fo.php
2026-04-15 15:23:57 +07:00

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://");
}
}