<?php
include_once('../../config.inc.php');
if (!isset($_SESSION['oreon'])) Session::Start();
$oreon=$_SESSION['oreon'];
$default_value=$_GET["default_attr"];
$result = $_SESSION["oreon"]->database->database->query("SELECT enum_value FROM radius_attribute WHERE attribute='$default_value'");
$str="";
while ($row = $oreon->database->database->fetch_object($result)) {
$str.=$row->enum_value.";";
}
echo $str;
?>