Hello
I have two type of members to display.
events
1 that belong to a group.
and
2 that do not belong to a group.
I envision two dynamic tables. The first table has event 1 and below has tabel with event 2.
doing a query and I come across
event 1 from row 1, event 1 from row 2, event 2 from row 3, event 1 from row 4, event 2 from row 5, event1 from row 6, event 2 from row 7.
I would like the following display...............
event1 from row 1
event1 from row 2
event1 from row 4
event1 from row 6
event2 from row 3
event2 from row 5
the code I am working on looks like.
Note the code in the include works fine and spits out a dynamic table beautifully.
for(){
if($friend_i['group_status'] = 0)
{
echo "the following members does not belong to a group";
include("display_friend_no_group.php");
}else{
echo "the following members does not belong to a group";
include("display_friend_yes_group.php");
}
}
Thanks Tom