Posting Per Dean's Request
Dean,
I've been a member for a long time and I've sent you a lot of clients..
Anyway I'm building a program for a client, and as the mysql rows come
back he would like to see them count up in realtime.
Just like text field counts when you send in ListMailPro...
Can you point me in the right direction on how to create something
that will count up as the rows are returned from mysql?
I can do this in a for loop, I assume I'll have to write some kind of
function to make this happen, in a While Loop...
Thanks...
Here's an example of the for loop in case anyone is wondering, what the heck I'm talking about.. <grin>
<html>
<head>
</head>
<body>
<input name="sent" type="text" id="sent" value="0">
<?
for($i = 0; $i <= 10000; $i++) {
echo "<script>this.sent.value='$i'</script>";
flush();
}
?>
</body>
</html>