hey guys -
i know that this topic has been posted here before, but i can't find it anywhere on the old forums.
my question is:
how do you do the "loading please wait"?
i have a huge database being displayed and I want to make a "Loading Please Wait" while the page is loading.
That's the snippet I"m working with.
Also, how would i just dispay like 20 results at one time? and then have a "Next" button to display 20 more results?
Thanks much in advance guys
i know that this topic has been posted here before, but i can't find it anywhere on the old forums.
my question is:
how do you do the "loading please wait"?
i have a huge database being displayed and I want to make a "Loading Please Wait" while the page is loading.
Code:
$query = "SELECT * from stations ORDER BY name";
$result = mysql_query($query, $db);
if (!$result) {
echo mysql_error();
}
That's the snippet I"m working with.
Also, how would i just dispay like 20 results at one time? and then have a "Next" button to display 20 more results?
Thanks much in advance guys