Dear Friends, please PLEASE help me to understand where in this code i should put sriptslashes to escape having ' as \'
if (file_exists(\"$cache_path/index.php3?$cacheext.cache\")){
$lastcache = filectime(\"$cache_path/index.php3?$cacheext.cache\");
$newtime = time();
if (($newtime - $lastcache) < $cachetime){
$cachefile = fopen ($cache_path/index.php3?$cacheext.cache\", \"r\");
while(!feof($cachefile))
{
$templine = fgets($cachefile,255);
print $templine;
}
fclose($cachefile);
exit;
}
}