hm.. kann man den Inhalt nicht irgendwie in ne schleif packen. und die wo im selben array sind in eine variable speichern?
Hier ist mein Script Mein leider Erfolgloser versuch ist weiter Unten.
hier ist mein versuch das in ne variable zu speichern
Hier ist mein Script Mein leider Erfolgloser versuch ist weiter Unten.
PHP:
<table width="100%" border="1" cellspacing="0" cellpadding="1">
<br><br><br>
<tr><td>Players</td><td>Matchup</td><td>Game Length</td><td>Details</td><td>Downlaod</td>
<?php
chdir('replays/');
$repfiles = glob("*.rep");
foreach($repfiles as $repfile)
{
$aktueller_pfad = getcwd();
$info = php_bw_load_replay($aktueller_pfad."/".$repfile);
$team = $info->Teams;
$player =$info->Players;
$matchup = $info->Matchup;
if($info->ErrorCode != 0)
die("Could not load the replay ! Message : " . $info->ErrorString);
foreach($info->Players as $player)
$datum = date("i:s",$info->GameLength);
echo "
<tr onmouseover=\"this.style.backgroundColor='#ccc';\" onmouseout=\"this.style.backgroundColor='';\"><td width='140px'>$player->Name</td><td width='20px'>vs</td><td width='140px'>$player->Name</td> <td>$matchup</td> <td>$datum</td><td><a href=\"php_bw_load_replay.php?path=$repfile\">Details</a></td><td><a href=replays/$repfile> Download</a></td>
";
}
?>
</table>
PHP:
echo"<td>Spieler1</td><td>Vs.</td><td>Spieler2</td>
wenn es 4 sind
echo"<td>Spieler1</td><td></td><td>Spieler2</td><br>
<td></td><td>Vs.</td><td></td><br>
<td>Spieler4</td><td></td><td>Spieler3</td>
bei 6
echo"<td>Spieler1</td><td></td><td>Spieler2</td><br>
<td>Spieler6</td><td>Vs.</td><td></td>Spieler5<br>
<td>Spieler4</td><td></td><td>Spieler3</td>
ist das irgendwie machbar anstatt eben dem foreach($info->Player as player)
echo $player->Name;
ihabs so versucht ist aber leider falsch
PHP-Code:
foreach($info->Players as $player)
echo "<tr><td bgcolor=FF6600><b>".if ($info->NumPlayer = 2)
{
$spieler1 = $player->Name where player is 1;
}.$spieler1
."</td>Vs.<td><td>$player->Name</td>";
}
Zuletzt bearbeitet: