16 lines
262 B
PHP
Raw Permalink Normal View History

2012-09-07 18:20:39 +01:00
<?php
include "scripts/setup.php";
$page_title="Users";
include "scripts/pageheader.php";
2012-09-07 20:28:19 +01:00
2012-09-09 15:36:01 +01:00
$id=$_GET['id'];
if ($id==""){
echo "<table width=\"100%\"><tr><th colspan=2>Username</th></tr>\n";
echo "</table>";
}else{
}
2012-09-07 20:28:19 +01:00
include "scripts/pagefooter.php";
2012-09-07 18:20:39 +01:00
?>