Kyberia v1.0
[mirrors/Kyberia-bloodline.git] / admin / forums.php
CommitLineData
bc13d5d6
H
1<html><head>
2<?
3
4ini_set("include_path","/home/hromi1/kyberia/inc:/home/hromi1/kyberia/boxiky/");
5include_once("kyberia.inc");
6$database=new CLASS_KYBERIA();
7$set=$database->query("select user.login as login,forum.* from forum left join user on user.id=forum.forum_owner order by forum_id");
8echo "<form method='post'><table>";
9while ($set->next()) {
10 echo "<tr>";
11
12 echo "<td>",$set->getString('forum_id'),"</td>";
13 echo "<td>",$set->getString('forum_name'),"</td>";
14 echo "<td>",$set->getString('login'),"</td>";
15 echo "</tr>";
16}
17
18echo "</table>";
19
20?>
This page took 0.140939 seconds and 4 git commands to generate.