vickkeshav Posted February 5, 2012 Share Posted February 5, 2012 hello all, I have a table comment as follow: **Comment** comment_id cmt followupid 1 Hello 3 2 hi 4 3 Hey 2 4 wassup 1 My query is that I want to echo "Hello", "hi", "hey" , "Wassup" and other (the record continues) individualy, I have used $comment = mysql_result($runQuery, $i,"cmt"); echo $comment; which works fine but the problem is that it echoes all the comments at once, what I want is to echo all the comment but one at a time. the comment are in a div tag such that each the div appears only after 1 second the page is loaded. I want each comment to appear after different time interval for e.g: Hello to appear at 5pm (not necessarily the corect time it can be just an int) hi 5.10 pm hey 6.30 pm Please Help! Quote Link to comment https://forums.phpfreaks.com/topic/256461-echoing-one-record-at-a-time-please-help/ Share on other sites More sharing options...
fenway Posted February 5, 2012 Share Posted February 5, 2012 Since you haven't shown us the query, we cant' help you. Quote Link to comment https://forums.phpfreaks.com/topic/256461-echoing-one-record-at-a-time-please-help/#findComment-1314757 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.