DIY three-step counter creation (on)

Source: Internet
Author: User

Most people are eager to use databases for counters, message books, forums, and other things. This article will introduce self-made counter programs.
First, create 0 ~ 9 place the 10 GIF Digital Images in the img folder and create a PHP file.
-- Count1.php:
<?
$ Linkptr = mysql_pconnect ("localhost", "yourname", "password ");

Mysql_select_db ("yourname", $ linkptr );
Mysql_query ("update counter
Set visited = visited + 1 where num = 1 ", $ linkptr );
$ Result = mysql_query ("select visited
From counter where num = 1 ", $ linkptr );
List ($ counter) = mysql_fetch_row ($ result );
$ Counter = sprintf ("% 05d", $ counter );

For ($ I = 0; $ I <5; $ I ++ ){
$ Tmpstr = " ";
Echo $ tmpstr;
}
?>
Place code on the home page as appropriate <? Include "count1.php"?>, In this way, your counter is displayed on the homepage, but remember to create a TABLE -- counter: create table counter (
Num int unsigned,
Visited int unsigned
);
How is it easy! In this article, I will introduce how to make your image site use your own counters.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.