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:
Second, My file uploader only uploads pictures and files when they are under 3 mb...
How can i fix so i can upload files which are 30 mbs?
Thanks
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;
?>
Second, My file uploader only uploads pictures and files when they are under 3 mb...
How can i fix so i can upload files which are 30 mbs?
Thanks
Yours, Runarm.