This is because $offset isn't holding a value.
How is offset being passed to your script?
If it is by the address (GET) then you need something like:
Code:
$offset = $_GET['offset'];
This is because your server might have register globals turned off for security reasons.