phpbar.de logo

Mailinglisten-Archive

[php] MySQL Abfrage

[php] MySQL Abfrage

Christoph Loeffler php_(at)_phpcenter.de
Wed, 4 Sep 2002 23:55:17 +0200


Hallo Liste,

Am Mittwoch, 4. September 2002 um 23:46 tipperte Frank:

> Hallo

> Ich verzweifle gerade an den einfachsten Dingen.
> Ich möchte mir aus einer Tabelle mit drei Einträgen alle Einträge anzeigen
> lassen.
> Die Tabelle hat zwei Felder ID und SUB_ID

> Ich mache folgendes:

> $sql = mysql_query("select id from tabelle where sub_id = '5'");
> $result = mysql_fetch_row($sql); oder auch mysql_fetch_array

> Die Einträge der Tabelle:

> 10 | 5
> 12 | 5
> 76 | 5

> Nach dem bischen Code da oben bekomme ich folgendes:

> $result[0] = 10 ' Super stimmt auch
> $result[1] und $result[2] gibt es nicht!!!
stimmt auch, du hast ja nur id also einen Eintrag im Array.

mach mal:

$result = $array();
$sql = mysql_query("select id, sub_id from tabelle where sub_id = '5'");
$result[] = mysql_fetch_row($sql);

schreib jetzt mal weiter:
$result[] = mysql_fetch_row($sql);
$result[] = mysql_fetch_row($sql);

jetzt hast du
$result[0][0] : 10
$result[0][1] : 5
$result[1][0] : 12
$result[1][1] : 5
$result[2][0] : 76
$result[2][1] :5

> Hmmm, und nu ? Ich hole mir mal einen Kaffee...
slurp...

ciao 
Christoph Loeffler


php::bar PHP Wiki   -   Listenarchive