also ich habe ein clanwar script und wollte nun die letzten drei wars auf der seite ausgeben nun hab ich mir die php datei so zerschnitten das alles so ist wie ichs haben will doch nun weiss ich nicht wie ich es schaffe das nur die drei letzten wars angezeigt werden und nicht alle....
Hier mal meine datei...
Ich hoffe jemand kann mir helfen...
thx trotzdem schonmal
Hier mal meine datei...
PHP:
<?PHP
include("config.php"); ?>
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<title><? echo $seitentitel ?></title>
<link rel=stylesheet type="text/css" href="css/style.css">
<style type="text/css">
<!--
-->
</style>
</head>
<body bgcolor=<? echo "$hintergrundfarbe text=$textfarbe"?>>
<table border=0 cellspacing=0 cellpadding=0 align=center>
<?php
$filesize = filesize('db/wars.dat');
if ($filesize == true){
$file = fopen ('wars.dat',"r");
$entries = fread($file, $filesize);
fclose ($file);
$s_entries = explode ("*", $entries);
for ($f = 0; $f < count($s_entries)-1; $f++){
$s_zeile = explode (";", $s_entries[$f]);
?>
<tr>
<td align=center> <font size=\"1\"><i>
<?php echo "<font size=\"1\"><a href=\"wars.php?details=$s_zeile[0]&&gegner=$s_zeile[3]\" >$s_zeile[2]</a></font>" ?>
</i></font></td>
<td align=center>
<?php
$gegner = substr(stristr($s_zeile[5],":"),1);
$own = substr($s_zeile[5],0,strpos($s_zeile[5],":"));
if ($own > $gegner){
echo "<font size=\"1\" color=\"#009900\">$s_zeile[5]</font>";
}
elseif ($own < $gegner){
echo "<font size=\"1\" color=\"#990000\">$s_zeile[5]</font>";
}
else{
echo "<font size=\"1\" color=\"#000099\">$s_zeile[5]</font>";
}
?>
</td>
</tr>
<?php
}
}
?>
</table>
</body>
thx trotzdem schonmal