Ich möchte hier lauter Div Boxen aus dem Array nebeneinander bekommen. Leider sind diese nur untereinander, hat da jemand eine Lösung?
Danke
Danke
Code:
echo ' <table border="0" width="1024"> <tr> <td>'; $raw = explode("%TEND%",$raw); $raw = str_replace(".tmp", "", $raw); $raw = str_replace(".", "", $raw); for($i=0; $i < count($raw); $i++) { $array = explode("/",$raw[$i]); if ($array[1] == temp) { echo ' <div style="background-color:ffffff; -webkit-box-shadow: 0px 0px 10px #b9c0b4; /* webkit browser*/ -moz-box-shadow: 0px 0px 10px #b9c0b4; /* firefox */ box-shadow: 0px 0px 10px #b9c0b4; width: 250px; height: 100px; ">Ordner: '.$array[2].'</br> Dateiname: '.$array[3].' </div>'; } } echo ' </td> </tr> </table>';
Comment