include("../config.php");
include("../function.php");
session_start();
if($power_man!=$root)
header("location:err.php");
($link=mysql_pconnect($host,$user,$password))||die("can not link mysql");
mysql_select_db($db,$link)||die("can not link dababase");
function showdata(){
global $table_auth;
global $link;
global $root;
$sql="select * from $table_auth where account!='".$root."'";
$result=mysql_query($sql,$link);
$i=0;
while($rows=mysql_fetch_array($result)){
$name=$rows[name];
$account=$rows[account];
echo
$name
$account