ja aber ich wollte es nicht absolut machen
die sachen werden ja ausgegben.
jetzt soll hinter jeder datei ein Details link stehen.
also die dateien werde ja alle mit dem script
aufgelistet mit geringen daten . wenn
ich möchte eben z.B. hinter GameDate
einen Link hizufügen der heisst dann Details
ich habe gedacht es geht so
echo"<br> Details: <a href=php_bw_load_replay.php?replays/$repfile=$path>Details</a>";
aber dem ist nicht so das details dokuemnt sieht bei ir o aus
die sachen werden ja ausgegben.
jetzt soll hinter jeder datei ein Details link stehen.
also die dateien werde ja alle mit dem script
PHP:
chdir('replays/');
$repfiles = glob("*.rep");
foreach($repfiles as $repfile)
{
$aktueller_pfad = getcwd();
$info = php_bw_load_replay($aktueller_pfad."/".$repfile);
if($info->ErrorCode != 0)
die("Could not load the replay ! Message : " . $info->ErrorString);
echo "<br>Date :" . $info->GameDate;
...
ich möchte eben z.B. hinter GameDate
einen Link hizufügen der heisst dann Details
ich habe gedacht es geht so
echo"<br> Details: <a href=php_bw_load_replay.php?replays/$repfile=$path>Details</a>";
aber dem ist nicht so das details dokuemnt sieht bei ir o aus
PHP:
<?php
$pfad= $_GET["$path"];
?>
<?php
$info = php_bw_load_replay($pfad);
$map = $info->Map;
$won = $info->Winner;
if($info->ErrorCode != 0)
die("Could not load the replay ! Message : " . $info->ErrorString);
echo "<br>Date :" . $info->GameDate;
echo "<br>Number of Players :" . $info->NumPlayer;
echo "<br>Teams :" . $info->Teams;
echo"<br>Observer:" . $info->IsObserver;
echo "<br>matchup :" . $info->Matchup;
echo "<br>Duration : " . $info->GameLength;
echo"<br>Type: " .$info->GameType;
echo "<br>Mapname : " . $map->Name;
echo "<br>Gamename : " . $info->GameName;
echo "<br>Winner : " . $won->Name;
echo "<br>Players info : <br>";
foreach($info->Players as $player)
echo $player->Name . " : " . "<img src='img/".$player->RaceName.".png'>" . ", " . $player->IsObserver . "," . $player->ColorName . "," . $player->APM . "APM.<br>";
?>