Jump to content

File not working


fert

Recommended Posts

[code]
<?php
echo "<br><br><br>";
if(file_exists("_private/count.txt"))
{
$file=@fopen("_private/count.txt","r+");
$num=@fread($file,filesize("_private/count.txt"));
@fwrite($file,$num+1);
@fclose($file);
}
else
{
$file=@fopen("_private/count.txt","w+");
$num=@fread($file,filesize("_private/count.txt"));
@fwrite($file,$num+1);
@fclose($file);
}
$num++;
echo "There have been: $num views of this page";
?>
[/code]
This code counts the number of views of my home page, but i now have 12131214121312151.21312141213E+151.21312141213E+311.21312141213E+1671.21312141213E+1671.21312141213E+1671.21312141213E+1671.21312141213E+1671.21312141213E+1671.21312141213E+1671.21312141213E+1671.21312141213E+168 as the number of views on my home page, what's wrong with my code?
Link to comment
Share on other sites

filesize will give you the size of the file and not the value of the count stored int the file. Looks like you want to open the file, read the value stored in the file and then add to it, store it back. If so:

you will have to use fread and store the value in a variable and not use fliesize. Hope that helps!!!

-V
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.