![]() |
[PHP] MySQL: Result als Array - ID als Index
Hallo,
vermutlich stehe ich gerade auf dem Schlauch, aber ich hänge gerade etwas: Ich benötige das Ergebnis einer MySQL-Abfrage als Array. In der Abfrage wird ID und Titel ausgelesen. Nun sollte es doch möglich sein, die ID aus der Abfrage als Index des Result-Arrays zu machen. Wenn also ID = 4 und Name = IchBinEinName ist und ich in PHP
Code:
ausführe, sollte
echo($result[4]);
Code:
ausgegeben werde.
IchBinEinName
Wie bekomme ich das hin? :wall: Grüße, Dennis |
Re: [PHP] MySQL: Result als Array - ID als Index
SQL ist zeilenorientiert.
|
Re: [PHP] MySQL: Result als Array - ID als Index
Ja!?
Ich meine ich könnte ja auch es umständlich Via While-Schleife machen, aber da musses doch ein einfachen Weg geben! |
Re: [PHP] MySQL: Result als Array - ID als Index
Wie sieht Deine SQL-Abfrage aus?
|
Re: [PHP] MySQL: Result als Array - ID als Index
SQL-Code:
SELECT
blog_categories.ID, blog_categories.name FROM blog_categories |
Re: [PHP] MySQL: Result als Array - ID als Index
geht nur über eine while-schleife
MfG - Ghost007 |
Re: [PHP] MySQL: Result als Array - ID als Index
Ich würde es so in der Art machen ;)
Code:
$result = mysql_query("...");
$array = array(); while ($row = mysql_fetch_assoc($result)) $array[$row["id"]] = $row["name"]; |
Re: [PHP] MySQL: Result als Array - ID als Index
Oki, habs jetzt doch mit Schleifen gemacht.
Dennoch Danke :-) |
Re: [PHP] MySQL: Result als Array - ID als Index
Oder statt einem Array eine Procedure
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:38 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz