$existing_groups along with a count of users per group. Use the functionality in group_new.php3
and show_groups.php3
* Update TODO
+* Add the style sheet in the content.html
+* Enlarge the width for the left frame
+* Make show_groups and the drop down menu in group_new work
+
Ver 1.72:
* Move the xlat function to a separate file in lib/xlat.php3
* Add a lib/sql/nas_list.php3 to also get the nas list from sql (naslist.conf still works)
<html>
+<head>
+<link rel="stylesheet" href="style.css">
+</head>
<body>
<center><img src="images/title2.gif">
<br><font size=+1><br>
echo "<b>No groups available</b>\n";
else{
echo "<select name=\"existing_groups\">\n";
- foreach ($existing_groups as $group)
+ foreach ($existing_groups as $count => $group)
echo "<option value=\"$group\">$group\n";
echo "</select>\n";
}
<title>
dialup administration</title>
</head>
- <frameset cols="122,*" border="0" frameborder="0" framespacing="0">
+ <frameset cols="130,*" border="0" frameborder="0" framespacing="0">
<frame name="buttons" src="buttons.php3" marginwidth="8"
marginheight="8" noresize >
<frame name="content" src="content.html" marginwidth="8"
<?php
unset($login);
$num = 0;
-include_once('../lib/$config[general_lib_type]/group_info.php3');
+include_once("../lib/$config[general_lib_type]/group_info.php3");
if (isset($existing_groups)){
foreach ($existing_groups as $num_members => $group){
$num++;