Mailinglisten-Archive |
Hallo ! Ich suche nach einer eleganten Lösung für ein 2 dimensionales Array. Der Ansatz wie folgt. Ich sende eine SQL an die MySQL Datenbank. Bsp.: $sql = "select tabelleA.spalte1, tabelleA.spalte2, tabelleB.spalte4 from tablleA, tabelleB where tabelleA.id = tabelleB.spalte3"; Die Antwort müsste wie folgt aussehen. $antwort[0]['tabelleA_spalte1'] = "bla1"; $antwort[0]['tabelleA_spalte2'] = "blub1"; $antwort[0]['tabelleB_spalte4'] = "klack1"; $antwort[1]['tabelleA_spalte1'] = "bla2"; $antwort[1]['tabelleA_spalte2'] = "blub2"; $antwort[1]['tabelleB_spalte4'] = "klack2"; Man müsste alles ausgehend von der SQL handeln. Ich würde mich über eine Info freuen. Mit freundlichen Grüßen Stephan
php::bar PHP Wiki - Listenarchive