Re: [PHP] threaded forum to display replies

2001-09-13 Thread Chris Hobbs
How about something like this: \n"; if ($r) { while ($row=mysql_fetch_array($r)) { // output your message here - it'll appear // in a nested list structure with the existing // html code.

[PHP] threaded forum to display replies

2001-09-13 Thread hassan xaaji
Hi I have been coding a threaded forum. A simple one. I have this problem: I cannot show all the replies in a threaded way. I tried a recursive method which takes the messageid and I do like $messageID = $p_id +1; showMessages($messageID); This only works if the messageids are 1 2 3 4 5 6. bu