NAUTILUSPHP


NTC
Nautilus Text Counter.

V.1.7

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.


Installation Stages:

1. Upload the files from the zip file.
2. CHMOD the data directory to the value 666.
3. Upload a PHP page that you want to put a counter on with a script below included.

Scripts:

1. To show the count and increase count by 1:

<?php
$wa = 1;
include("count.php");
echo "$count";
?>

2. To show the count and stop the count increasing:

<?php
$wa = 0;
include("count.php");
echo "$count";
?>

3. To hide the count and increase the count by 1.

<?php
$wa = 1;
include("count.php");
?>

NOTE: If you put the counter script in a directory, you must change the above scripts to show the path to your count.php file. E.g.:

<?php
$wa = 1;
include("counterfolder/count.php");
echo "$count";
?>


END OF FILE
http://www.nautilusphp.tk