You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			704 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			26 lines
		
	
	
		
			704 B
		
	
	
	
		
			PHP
		
	
| <?php
 | |
| /*
 | |
|  * Created on 07.03.2009
 | |
|  *
 | |
|  * @copyright (c) 2009 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">Clan Ticker</th>
 | |
| 		</tr>
 | |
| 		<tr>
 | |
| 			<th align="center" width="200">Datum</th>
 | |
| 			<th align="center">Nachricht</th>
 | |
| 		</tr>
 | |
| <?php
 | |
| 		$ticks_qry = mysql_query('SELECT * FROM clan_ticker WHERE clanid ='.$user_ida['clan'].' 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>
 |