Jump to content

Recommended Posts

Hello,

 

I have this object here :

 

 class getIDs
{

	function list_MainCat(){

		$sql = "SELECT * FROM MAIN_CAT ORDER BY main_cat_id ASC";
		$query = mysql_query($sql);

		while($row = mysql_fetch_array($query)){

			$maincat[] = $row['main_cat_id'];
			$maincat[] = $row['main_cat_name'];

		}

		return($maincat);

	}

}

 

this object is in a file called 'core.php'.

 

as you can see there is a loop inside, what I would like to do is to echo out the $maincat in another php file.

So I did this in another php file:

 

	$listmaincat = new getIDs();

list($maincat_id,$maincat_name) = $listmaincat->list_MainCat();
        echo $maincat_id." ".$maincat_name;	

 

but of course, it only echoes out 1 record.

 

Anyone knows how I can fix this?

Link to comment
https://forums.phpfreaks.com/topic/170448-solved-php-return-multiple-rows/
Share on other sites

This

$maincat[] = $row['main_cat_id'];
          $maincat[] = $row['main_cat_name'];

Should be just

$maincat[] = $row;

 

Now to display your results you'll want to loop through them, eg

$listmaincat = new getIDs();

foreach($listmaincat->list_MainCat() as $maincat)
{
    echo $maincat['main_cat_id'] . ' ' . $maincat['main_cat_name'] .'<br />';
}

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.