hi i have this code on my script : $arr = array( 'avatar'=>$client['avatar'],'message'=>stripslashes($_POST['message']),'username'=>$client['uname'],'created'=>time() ); echo comment_display($arr); if i submited 4 comments of echo comment_display($arr); start from post 1 it sort them like this : post 4 post 3 post 2 post 1 post 1 , post 2 above post 1 , post 3 above post 2 , post 4 above post 3 but i want them like this : post 1 post 2 post 3 post 4 post 1 , post 2 under post 1 , post 3 under post 2 , post 4 under post 3 how can i make the " echo comment_display($arr); " become under the last post not above . thank you verry much