Hi Pirate,
The 'int' means that the function returns an integer value. The way you get to use it is:
$size = filesize($thisfile);
If you need to check whether the size has changed, you should keep track of the previous size. You can do this in a database such as mysql, or in a textfile. The previous is much easier to get going, since it contains all sorts of functionality for selecting and sorting, whereas for files you'd have to write many of them yourselve.
If you hget cracking at this, and decide which system you want to use, we cna help you out.l But we cannot make the fundamental decisions on how to setup the system. We can only give a hint which is easiest. (Database).
[edit]
Perhaps you have missed this one (I intially forgot about it):
filectime
(PHP 3, PHP 4, PHP 5)
filectime -- Gets inode change time of file
Description
int filectime ( string filename )
Returns the time the file was last changed, or FALSE in case of an error. The time is returned as a Unix timestamp.
You could use this to see whether a file was changed since a certain date?
[/edit]