Files
crm-ms1/ajax/get.php
2026-05-27 11:44:10 -04:00

8 lines
144 B
PHP

<?php
require_once("inc/init.php");
$get_func = key($GLOBALS["_GET"]);
echo function_exists($get_func) ? call_user_func($get_func) : null;
?>