Jump to content

[SOLVED] taking SELECT results and turning them into an array()


ballhogjoni

Recommended Posts

Does anyone know how take a mysql select statement and have the results placed into an array? I am returning 1+ rows and want to place those rows into an array so I can run a foreach() for each row and then run another foreach() for each column for each row?

 

EDIT: I know about mysql_fetch_array() and it just places 1 row's columns into an array.

Link to comment
Share on other sites

<?php

      $query = "SELECT * FROM `mytable` WHERE `date`='$date'";      
      $q = $db->query($query, $var);

        while($row = $db->fetch_array($q)) {
          
          foreach($row as $r) {
            // Do yo' thang //
          }            
        }

?>

 

Using a while loop and then a foreach isn't an option?

Link to comment
Share on other sites

Then ignore it for now...though I do recommend looking into OOP (Object oriented Programming). Especially if you don't want to be repetitive with your code.

<?php

      $query = "SELECT * FROM `mytable` WHERE `date`='$date'";      
      $q = mysql_query($query, $var);

        while($row = mysql_fetch_array($q)) {
          
          foreach($row as $r) {
            // Do yo' thang //
          }            
        }

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.