Im looking to make an HTML counter similar to a traffic hit counter, but instead I can change the # that is displayed. Anyone know any sites where i can create this or what the code would be? Basically i want to make a counter that I can update to show how many websites that I have done services for to date on my website.
learn some php and database programming, then you can find the answer to your question <?php $count = 0; $count++; echo $count; ?> PHP: too lazy to put some database codes. each time you load a page with that code and the there is a database connection in it, the page will increase the count by one