我有下面的PHP代碼:包容 - 不同的結果比直接鏈接
<html>
<body>
<?php
$_GET = Array('filename' => 'scores/score.sco&scoresize=10&action=VIEW&viewtype=HTML'); // add the others here too
include('scores.php');
?>
</body>
</html>
有了這個代碼,我想包括此http://apps.facebook.com/krajecr/scores.php?filename=scores/score.sco&scoresize=10&action=VIEW&viewtype=HTML 直接鏈接的作品,但你可以看到從結果包括在這裏:http://apps.facebook.com/krajecr/pokus.php - error: Warning: fclose(): supplied argument is not a valid stream resource in /3w/webz.cz/p/programming/facebook/scores.php on line 9
你能幫我解決這個問題嗎?
scores.php可以在這裏找到http://www.flashkit.com/tutorials/Games/High-sco-Glen_Rho-657/index.php()
這裏是第10行:
<?php
$winscore = (int)$winscore;
// Create a Blank File if it doesn't already exist
if (!file_exists($filename))
{
$file=fopen($filename, "w");
fclose ($file);
}
什麼是第9行? – 2011-03-10 01:26:39
'scores.php'的內容是什麼?也請在問題中發佈錯誤,而不是依賴可能會改變/消失的外部網站。 – 2011-03-10 01:31:31
fclose($ file); – Tom83B 2011-03-10 01:31:43