7 lines
204 B
PHP
7 lines
204 B
PHP
|
<?php
|
||
|
require_once("policydecisions.class.php");
|
||
|
$pd = new \Misc\PolicyDecisions();
|
||
|
$pd->load_from_webpage(); // this one,
|
||
|
$pd->html(); // see this for options on output
|
||
|
?>
|