誰でもこれを手伝ってもらえますか?Web 開発は初めてで、このエラーの意味がわかりません。
警告: fopen(images/nophoto.png): ストリームを開けませんでした: No such file or directory in /home/u835626360/public_html/remove.html 101 行目
このファイル/画像は開いていません。閉じる必要があります
コード:
$expire=time()-3600;
setcookie("dname","a", $expire);
setcookie("dpode","a", $expire);
}
function delpics($filename)
{
$path_to_file='userpics/';
$old = getcwd(); // Save the current directory
chdir($path_to_file);
$fh = fopen($filename, 'w') or die("can't this file/picture is open you need close ");
fclose($fh);
if (!unlink($filename))
{
echo ("Error deleting $file");
}
else
{
echo ("Deleted $filename");
}
chdir($old); // Restore the old working directory
}