Подскажите какой скрипт роз ссылки подойдет по уже имеющейся базы пользователей :
CODE:// просмотр всех пользователей
if ($_GET['event']=="userwho") {
$userlines=array_reverse(file("$datadir/usersdat.php"));
$ui=count($userlines); $i="0";
$rubrika="Пользователи системы";
$t1="#FFFFFF"; $t2="#EEEEEE";
include "$topurl"; addtop();// подключаем ШАПКУ
print"<TABLE width=100% cellPadding=2 cellSpacing=1 align=center>
<TR><TD>
<table cellpadding=0 cellspacing=0 border=0 width=99% align=center>
<tr>
<td><div class='faqleft_gif'> </div></td><td width=100%><div class='faqcenter_gif' align=right><div class='faqcenter_gif' align=right><img class='faq_title'><strong class=faq_title_text><b>Пользователи</b></strong></div></td><td><div align=right class='faqright_gif'></div>
</td></Tr></TABLE>
<table cellpadding=0 cellspacing=0 border=0 width=99% align=center bgcolor='$bgcolor_'>
<tr><td>
<ul>
<li class='LI'>Закажите <img src='images/topic/vip_star.png' alt='VIP-статус' border='0'> - <strong><b>Статус</b></strong> для широких возможностей.<BR>
</ul>
</td></tr>
</table>
<table border=0 width=100% align=center cellpadding=2 cellspacing=2><tr bgcolor=#F0F0F0 align=center>
<td height=20><STRONG><B>Имя</B></STRONG></td>
<td height=20><STRONG><B>E-mail</B></STRONG></td>
<td height=20><STRONG><B>WWW.</B></STRONG></td>
<td height=20><STRONG><B>Проект</B></STRONG></td>
<td height=20><STRONG><B>Город</B></STRONG></td>
<td height=20><STRONG><B>Статус</B></STRONG></td>
</tr>";
do {$tdt=explode("|", $userlines[$i]); $i++;
if ($tdt[10]=="ok") {$user1="<img src='images/topic/no_vip_star.png' alt='Пользовательский' border='0'>"; $user2="<input type=text name=addvip value='30' style='width: 30px' size=18 maxlength=3><input type=submit name=submit value='+' style='width: 20px'>";
} else {
$user1="<img src='images/topic/vip_star.png' border=0>"; $vipdays="$rdt[12]";
}
print"<tr bgcolor=$t1>
<td align=center><a class=la href=\"tools.php?event=profile&pname=$tdt[0]\">$tdt[0]</a></td>
<td width=80 align=center height=20><a class=la onclick=\"window.open('tools.php?event=mailto&email=$tdt[2]&name=$tdt[0]','email','width=400,height=390,left=100,top=100')\">E-mail</a></td>
<td align=center height=20><a class=la href=\"http://$tdt[3]\" target=_blank>$tdt[3]</a></td>
<td align=center height=20>$tdt[6]</td>
<td align=center height=20>$tdt[11]</td>
<td align=center height=20>$user1 $vipdays</td>
</form></tr>";
$t3=$t2; $t2=$t1; $t1=$t3;
} while ($i<$ui);
$ui--;
print"</table>
</td>
</tr>
</table>
<TABLE cellPadding=0 cellSpacing=0 width=100%>
<TR>
<td><div align=center><br /><br /><noindex>";
include "$brdskin/google.top.txt"; // подключаем СОДЕРЖИМОЕ
print"</noindex></div></TD></TR></table>";
print" <TABLE cellSpacing=0 cellPadding=0 width=100%>
<tr>
<Td align=center>
<table width='50%' cellspacing='0' cellpadding='0'>
<tr>
<Td height=20>
</td>
</tr>
<tr>
<Td><div CLASS='topik_left_rubrika'></div></Td><Td><div CLASS='topik_left'></div></Td>
<TD width='100%' class=right_title_text align=left>зарегистрированых - <B>$ui</B></TD>
<Td><div CLASS='topik_right'></div></Td><TD><div CLASS='topik_right_rubrika'></div></TD>
</tr>
</table>
</td>
</tr>
</table>";
include "$bottom"; include "$footer"; // СКИН
exit; } |