A possibility is, that the results of the scripts are cached anywhere (browser or proxy).
To deactivate any proxy-cache, code this four header instructions at the very beginning of every script:
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // some gone date
header ("Last-Modified: " . gmdate ("D, d M Y H:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header ("Pragma: no-cache"); // HTTP/1.0
To deactivate browser cache insert following meta tag to your html codes
<META http-equiv="expires" content="0">
At first close all your browser windows, delete all temporary stored internet files from your computer and try again.