myGully.com

myGully.com (https://mygully.com/index.php)
-   Entwicklung & Programmierung (https://mygully.com/forumdisplay.php?f=72)
-   -   [PHP]MySQL Abfrage mit 4 Spalten und x Zeilen in Tabelle (https://mygully.com/showthread.php?t=2984278)

SpAwN 21.07.13 13:58

[PHP]MySQL Abfrage mit 4 Spalten und x Zeilen in Tabelle
 
Hi Leute,

ich arbeite gerade an einer Tabelle die mir 4 Spalten(Querys) und mehrere Zeilen ausgeben soll.

Sprich, ich will nach 4 nebeneinander folgenden Spalten die nächste Zeile anfangen.

Meine MYSQL Abfrage ist zurzeit so:

Code:


<center>
  <div style="padding:10px; margin:10px; border:2px solid #F9F9F9; background-color:#FFFFFF; width:700px">
<table width="477" border="0">
  <tr>
<?php


                                                                $abfrage123 = "SELECT * FROM ssys_gameplays ORDER BY DESC LIMIT 4 ";
                                                                $ergebnis123 = mysql_query($abfrage123);
                                                                while($system = mysql_fetch_object($ergebnis123))
                                                                { ?> 
                               
    <td><a href="?show=showgameplay&id=<?php echo replace($system->id); ?>"><strong>
      <h1 align="left" style="font-size:14px"><?php echo replace($system->titel); ?></h1></strong><img width="160" src="http://img.youtube.com/vi/<?php echo replace($system->link); ?>/mqdefault.jpg" />
      </a>
      </td>
     
  <?php } ?>   
     
  </tr>
</table>
</div>
</center>


Das LIMT 4 hab ich nur so rein gemacht, das ist die perfekte Größe der Seite !
Will jetzt nur noch anstatt LIMIT 4 in der nächsten Zeile weiter ausgeben !

Ich hoffe ich konnte es gut erklären wo mein Problem liegt.

Danke im voraus für eure Antworten :T

SpAwN 21.07.13 15:36

Probelm wurde schon gelöst !


Alle Zeitangaben in WEZ +1. Es ist jetzt 23:16 Uhr.

Powered by vBulletin® (Deutsch)
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.