Andavos: mysql -abfrage eindimensional ausgeben

Beitrag lesen

Hallo,

So gehts mit PHP:
$abfrage = "SELECT artikel FROM tabelle LIMIT 3";
$ergebnis = mysql_query($abfrage);
while($row = mysql_fetch_object($ergebnis))
   {
echo "$row->aktikel, ";
   }

So hast du es bisher gemacht:

$abfrage = "SELECT artikel FROM tabelle LIMIT 3";
$ergebnis = mysql_query($abfrage);
while($row = mysql_fetch_object($ergebnis))
   {
echo "$row->aktikel<br>";
   }

MFG
Andavos

--
http://www.rpgcommunity.de/clanwissen/index.php Webdesign, PHP, Clan-Aufbau und mehr