I was wondering what I should start on, to make a site counter. I have something, but don't know how to put it in motion:
Code: Select all
<?php
$sitecount = "1";
//take current value of text box, and add one
$sitecount + 1;
?>Moderator: General Moderators
Code: Select all
<?php
$sitecount = "1";
//take current value of text box, and add one
$sitecount + 1;
?>