| Server IP : 172.64.80.1 / Your IP : 216.73.216.175 Web Server : LiteSpeed System : Linux srv13.swhc.ca 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : hongluck ( 2522) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/hongluck/public_html/old site/webcal/ |
Upload File : |
<a name="tabgroups"></a>
<div id="tabscontent_groups">
<?php
echo "<a title=\"" .
translate("Add New Group") . "\" href=\"group_edit.php\" target=\"grpiframe\" onclick=\"javascript:show('grpiframe');\">" .
translate("Add New Group") . "</a><br />\n";
?>
<?php
$count = 0;
$lastrow = 0;
$res = dbi_query ( "SELECT cal_group_id, cal_name FROM webcal_group ORDER BY cal_name" );
if ( $res ) {
while ( $row = dbi_fetch_row ( $res ) ) {
if ( $count == 0 ) {
echo "<ul>\n";
}
echo "<li><a title=\"" .
$row[1] . "\" href=\"group_edit.php?id=" . $row[0] . "\" target=\"grpiframe\" onclick=\"javascript:show('grpiframe');\">" .
$row[1] . "</a></li>\n";
$count++;
$lastrow = $row[0];
}
if ( $count > 0 ) { echo "</ul>\n"; }
dbi_free_result ( $res );
}
echo "<iframe src=\"group_edit.php?id=" . $lastrow . "\" name=\"grpiframe\" id=\"grpiframe\" style=\"width:90%;border-width:0px; height:325px;\"></iframe>";
?>
</div>