View file lets_friends/user/lets_friends/include.php

File size: 993B
<?
/*

 * Автор скрипта Ak47res1
 * Все права только у Ak47res1
 * Скрипт платный
 * ICQ 646099815
	
*/

/* Выводим список анкет */
echo '<table class="post">';

$q=mysql_query("SELECT * FROM `lets_friends_list` WHERE `ptime` > '$time' ORDER BY rand() LIMIT 1");
while ($post = mysql_fetch_assoc($q))
{
$ank=get_user($post['id_user']);
echo '<div class="mai">';
echo status($ank['id']).''; // Аватарка
echo group($ank['id']) , ' <a href="/info.php?id=' . $ank['id'] . '">' . $ank['nick'] . '</a> :: <a href="/info.php?id=' . $ank['id'] . '">
'.($ank['id'] != $user['id']? '<img src="/user/lets_friends/style/crowd_team.png"> Подружиться' : '<img src="/user/lets_friends/style/user.png"> Моя анкета').'</a>';
echo online($ank['id']) . '<br />';
echo '<hr><a href="/user/lets_friends/"><img src="/user/lets_friends/style/crowd_team.png">PR Давай дружить</a>';
echo '</div>';
}
echo '</table>';

?>