RunarM
Finally back
Still working on my uploading website, but i still need some help.
How can i put my counter into my php file?
Counter:
(Please explain, i am not good with php, html etc...)
Thanks for helping
Yours, Runarm.
How can i put my counter into my php file?
Counter:
Code:
<?
$file = "counter.txt";
if (!file_exists($file))
{
touch($file);
$handle = fopen($file, 'r+');
$str = "<? \$count=0 ?>";
}
else
{
include "counter.txt";
$count++;
$str = "<? \$count=".$count." ?>";
$handle = fopen ($file, 'r+');
}
fwrite($handle, $str);
fclose($handle);
echo 'Views: ';
echo $count;
?>
(Please explain, i am not good with php, html etc...)
Thanks for helping
Yours, Runarm.
Last edited: