Array problem

This is a discussion on Array problem within the PHP General forums, part of the PHP Programming Forums category; Hi there, I am pulling picture ids out of a db and comment ids. The comments belong to the pic ...


Go Back   Usenet Forums > PHP Programming Forums > PHP General

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 10-17-2007
Merlin
 
Posts: n/a
Default Array problem

Hi there,

I am pulling picture ids out of a db and comment ids. The comments
belong to the pic ids and are stored in two seperate tables.
I am having trouble with the arrays to display them after pulling out of
the db.

The data is filled like this:

while (rows etc.){
$comment_id[$row->pic_id][] = $row->comment_id;
}

The goal is to cycle through that array and display the picture followed
by the belonging comments:

Picture ID 1
-Comment 1 to pic_id 1
-Comment 2 to pic_id 1
-Comment 3 to pic_id 1

Picture ID 2
-Comment 1 to pic_id 2
-Comment 2 to pic_id 2

That does sound easy, but unfortunatelly I could not figure it out so far.

Can somebody give me a hint on how to cycle throug the arrays, or an
alternative way to achive my goal?

Thank you for any help.

Best regards, Merlin
Reply With Quote
  #2 (permalink)  
Old 10-17-2007
Zoltán Németh
 
Posts: n/a
Default Re: [PHP] Array problem

2007. 10. 17, szerda keltezéssel 13.08-kor Merlin ezt Ã*rta:
> Hi there,
>
> I am pulling picture ids out of a db and comment ids. The comments
> belong to the pic ids and are stored in two seperate tables.
> I am having trouble with the arrays to display them after pulling out of
> the db.
>
> The data is filled like this:
>
> while (rows etc.){
> $comment_id[$row->pic_id][] = $row->comment_id;
> }
>
> The goal is to cycle through that array and display the picture followed
> by the belonging comments:
>
> Picture ID 1
> -Comment 1 to pic_id 1
> -Comment 2 to pic_id 1
> -Comment 3 to pic_id 1
>
> Picture ID 2
> -Comment 1 to pic_id 2
> -Comment 2 to pic_id 2
>
> That does sound easy, but unfortunatelly I could not figure it out so far.
>
> Can somebody give me a hint on how to cycle throug the arrays, or an
> alternative way to achive my goal?


something like

$pic_ids = array_keys($comment_id);
foreach ($pic_ids as $pic_id) {
// echo image tag or what you want
foreach ($comment_id[$pic_id] as $comment) {
// echo comment or what you want
}
}

greets
Zoltán Németh

>
> Thank you for any help.
>
> Best regards, Merlin
>

Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 04:19 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0