Mailinglisten-Archive |
Nabend Michael Michael Borchers wrote: [...] > Da stimmt doch was nicht?! [...] > Das Skript: > > ------------------------------------------------------------------------------------------------------------------------------------------------------ > <?php > echo time(); > > ob_start(); > > $q = "SELECT SQL_CALC_FOUND_ROWS contacts.*, address_book.* FROM contacts, > address_book WHERE contacts.address_book_id = address_book.address_book_id > AND contacts.groups_id = 1 ORDER BY contacts.contacts_name ASC LIMIT 0, > 3071"; > > $res = mysql_query($q); > ?> > <table width="100%" cellpadding="2" cellspacing="0" border="0"> > <?php > while($contacts_row=mysql_fetch_array($res)) Du brauchst numerische und assoziative Ergebnisarrays? Ansonsten probier mal den Ergebnistyp anzugeben: while($contacts_row=mysql_fetch_array($res, MYSQL_ASSOC)) Das halbiert auf PHP-Seite schonmal die Häfte Arrays;-) Viel Erfolg, Friedhelm p.s.: u.U. interessant: http://files.derickrethans.nl/xdebug-brasil6.pdf
php::bar PHP Wiki - Listenarchive