Menu

How To Use

HowTo (1)
john3825

How To Use

<html>
<head><?php
include("OSK_Loader.php");
$JS = ( object ) array( "JS" => array( "test.js" ), "CSS" => ( "test.css") );
$JS = @base64_encode( @json_encode( $JS ) );
$file = ( object ) array("Load_File" => $JS);
OSK_Loader::Load($file);
?>
</head>
<body>
</body>
</html>

with data file

<html>
<head><?php
include("OSK_Loader.php");
OSK_Loader::Load();
?>
</head>
<body>
</body>
</html>

include in head or make base64 encoded data file.