Hallo ich habe folgenden Code der Sachen aus einer *.dat aussortiert und in eine Tabelle macht schon:
<?php
require ("vars.php3");
$home_url='http://www.schuhball.rulz.de';
echo "<center><b>..::FreeWare List::..</b></center>";
echo "<a href=\"postmp3.php3\">Poste ein MP3 File</a></b><br>";
if (file_exists($data))
{
$afile = file($data);
for($num = 0; $num < count($afile); $num++)
{
$bfile = explode("|",$afile[$num]);
echo "<br><div align=\"center\">";
echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"2\" width=\"85%\">";
echo "<tr>";
echo "<td width=\"10%\" bgcolor=\"#666666\" valign=\"top\" align=\"right\"><font color=\"$tfont\"><b>::VON::</b></font></td>";
echo "<td width=\"65%\" valign=\"top\" bgcolor=\"$messagebody_tablecolor\"><font color=\"#666666\"> <b>$bfile[0]</b></font></td></tr>";
echo "<tr>";
echo "<td width=\"10%\" bgcolor=\"#666666\" valign=\"top\" align=\"right\"><font color=\"$tfont\"><b>::Filename::</b></font></td>";
echo "<td width=\"65%\" valign=\"top\" bgcolor=\"$messagebody_tablecolor\"><font color=\"#666666\"> <b>$bfile[3]</b></font></td></tr>";
echo "<tr>";
echo "<td width=\"10%\" bgcolor=\"#666666\" valign=\"top\" align=\"right\"><font color=\"$tfont\"><b>::URL::</b></font></td>";
echo "<td width=\"65%\" valign=\"top\" bgcolor=\"$messagebody_tablecolor\"><a href=\"$bfile[2]\"><font color=\"#666666\"> $bfile[2]</font></a></td></tr></table></div>";
}
}
else
{
echo "<tr><td>Couldn't open $data</td></tr>";
}
}
und wie ordne ich jetzt dann die einzelne Tabellen Alphabetisch, sortiert nach dem "VON"(upper) ???
<?php
require ("vars.php3");
$home_url='http://www.schuhball.rulz.de';
echo "<center><b>..::FreeWare List::..</b></center>";
echo "<a href=\"postmp3.php3\">Poste ein MP3 File</a></b><br>";
if (file_exists($data))
{
$afile = file($data);
for($num = 0; $num < count($afile); $num++)
{
$bfile = explode("|",$afile[$num]);
echo "<br><div align=\"center\">";
echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"2\" width=\"85%\">";
echo "<tr>";
echo "<td width=\"10%\" bgcolor=\"#666666\" valign=\"top\" align=\"right\"><font color=\"$tfont\"><b>::VON::</b></font></td>";
echo "<td width=\"65%\" valign=\"top\" bgcolor=\"$messagebody_tablecolor\"><font color=\"#666666\"> <b>$bfile[0]</b></font></td></tr>";
echo "<tr>";
echo "<td width=\"10%\" bgcolor=\"#666666\" valign=\"top\" align=\"right\"><font color=\"$tfont\"><b>::Filename::</b></font></td>";
echo "<td width=\"65%\" valign=\"top\" bgcolor=\"$messagebody_tablecolor\"><font color=\"#666666\"> <b>$bfile[3]</b></font></td></tr>";
echo "<tr>";
echo "<td width=\"10%\" bgcolor=\"#666666\" valign=\"top\" align=\"right\"><font color=\"$tfont\"><b>::URL::</b></font></td>";
echo "<td width=\"65%\" valign=\"top\" bgcolor=\"$messagebody_tablecolor\"><a href=\"$bfile[2]\"><font color=\"#666666\"> $bfile[2]</font></a></td></tr></table></div>";
}
}
else
{
echo "<tr><td>Couldn't open $data</td></tr>";
}
}
und wie ordne ich jetzt dann die einzelne Tabellen Alphabetisch, sortiert nach dem "VON"(upper) ???
Kommentar