ASISG
Gy - php framework/CMS | Download | example run gy php framework and include component
Example сonnection gy php framework
<?
include "./gy/gy.php"; // include core
Example of checking if the kernel is connected gy php framework
<if ( !defined("GY_CORE") && (GY_CORE !== true) ) die( "gy: err include core" );?>
Example run component:
<?
include "./gy/gy.php"; // include core
// example run component
$APP->component(
'form_auth',
'0',
array(
'test' => 'asd',
'idComponent' => 1,
)
);