You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
703 B
27 lines
703 B
<?php
|
|
/*
|
|
* Created on 07.03.2009
|
|
*
|
|
* @copyright (c) 2010 animegame.eu
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
|
|
*
|
|
*/
|
|
|
|
?>
|
|
<div align="center">
|
|
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
|
<tr>
|
|
<th colspan="2" align="center">User Ticker</th>
|
|
</tr>
|
|
<tr>
|
|
<th align="center" width="200">Datum</th>
|
|
<th align="center">Nachricht</th>
|
|
</tr>
|
|
<?php
|
|
$ticks_qry = mysql_query('SELECT * FROM user_ticker WHERE userid ='.$user_ida['id'].' ORDER BY `date` desc LIMIT 20');
|
|
while($tick = mysql_fetch_assoc($ticks_qry)){
|
|
echo '<tr><td align="center">'.$tick['date'].'</td><td>'.$tick['text'].'</td></tr>';
|
|
}
|
|
?>
|
|
</table>
|
|
</div>
|