1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
echo"
</td>
<td class='titlebox' valign='top'>
<div class='title'> News</div>
$g = mysql_query("select * from `news` sort by id desc limit 1, 3");
while ($lol = @mysql_fetch_array($g)) { echo $lol[tittle]; }
<br /><br />
<div class='title'> matches</div>
sacralis vs sacralis - 16 | 3<br/>
</td>
</tr>
</table>
<div align='center' id='copyright'>
Design og script av www.dexterous.no<br/> (#Dexterous.no @ QuakeNet)
</div>
</body>
</html>
";
?>
|