Guten Abend,
ich habe da ein kleines Problem, es handelt sich um einen Teilabschnitt meines PHP Scriptes, welches immer 4 Video’s nebeneinander in eine Liste eintragen soll und dann die Zeile darunter Downloadbuttons zu jedem Video darüber.
<article>
<h1>Dateiliste</h1>
<table>
<?php
$videoliste = array();
$infoliste = array();
$anfrage = "SELECT * FROM data WHERE ordner=\"videos/\" ORDER BY ordner ASC";
$result = mysqli_query($enter, $anfrage);
while($row = mysqli_fetch_object($result)){
array_push($videoliste, "<td><video class=\"video\"
src=\"uploads/$row->ordner$row->datname"."\" controls></video></td>");
array_push($infoliste, "<td><a href=\"uploads/$row->ordner$row->datname\".$row->typ/><img class=\"datapic\" src=\"images/download.png\" /></td>");
}
$key=0;
$c =0;
$holystringvideo="<tr>";
while(array_key_exists($key, $videoliste)){
if($c<=3){
$holystringvideo=$holystringvideo.$videoliste[$key];
}
else if($c>3 and $c<=7){
$holystringvideo=$holystringvideo.$infoliste[$key];
}
else{
$c=0;
}
$key=$key+1;
$c =$c +1;
} $holystringvideo=$holystringvideo."</tr>"; echo $holystringvideo;
?>
</table>
</article>
Ich hoffe jemand hat eine Idee, wie dieses Script zum Laufen gebracht werden kann. Ich bedanke mich schonmal im Vorraus!