hi leute
ich brauche mal eure hilfe
ich habe dieses Script mit hilfe von selfphp gebastelt
und jetzt stehe ich vor einem problem wo ich nicht mehr weiter weiß
ich hoffe ihr könnt mir helfen
habe hinbekommen das sich die bilder nach reihenfolge in der tabelle einreihen
jetzt möchte ich das gleiche auch mit dem filenamen hinbekommen und den namen auch noch etwas einkürzen jetzt wird immer angezeigt
"img/clan-templates_tumb-001.png"
sollte dann aber so aussehen
"Clan Template 001"
und dann fortlaufend wie die bilder
hoffe ich drücke mich richtig aus
danke für eure hilfe
ich brauche mal eure hilfe
ich habe dieses Script mit hilfe von selfphp gebastelt
und jetzt stehe ich vor einem problem wo ich nicht mehr weiter weiß
ich hoffe ihr könnt mir helfen
habe hinbekommen das sich die bilder nach reihenfolge in der tabelle einreihen
jetzt möchte ich das gleiche auch mit dem filenamen hinbekommen und den namen auch noch etwas einkürzen jetzt wird immer angezeigt
"img/clan-templates_tumb-001.png"
sollte dann aber so aussehen
"Clan Template 001"
und dann fortlaufend wie die bilder
hoffe ich drücke mich richtig aus
PHP-Code:
<?PHP
function listPicture($dir=".",$type="png")
{
$x = 0;
foreach (glob($dir."*.".$type) as $filename)
{
$picture[$x]['file'] = $filename;
$x++;
}
return $picture;
}
$pic = listPicture("img/","png");
for($x=0;$x<count($pic);$x++)
{
$file = $pic[$x]['file'];
echo '<table width="600" border="1" align="center" cellpadding="1" cellspacing="1">';
for($x=0;$x<count($pic);$x+=2)
{
echo '
<tr>
<td align="center">'.$file.'</td>
<td> </td>
<td align="center">Clan Template 006</td>
</tr>
<tr align="center" valign="middle">
<td><img src="'.$pic[$x]['file'].'"></td>
<td> </td>';
if(array_key_exists($x+1,$pic)){
echo '<td><img src="'.$pic[$x+1]['file'].'"></td>';
}
echo
'</tr>';
echo
'<tr>
<td style="font-size: 12px;" colspan="3">info text
</td>
</tr>';
echo
'<tr>
<td style="font-size: 12px;" colspan="3"> </td>
</tr>';
}
echo '</table>';
}
?>
Kommentar