私はデータベースとサーバーの操作に非常に精通しており、MAMP をダウンロードしました。HTML と CSS で作成した Web サイトがあり、そこに php スクリプトを挿入したいと考えています。ファイルを .php に保存しました。ブラウザの localhost ポートからそのファイルに移動すると、html が表示されません。空白の白いページしか表示されません。おそらく本当に明白な答えがあるでしょうが、私は1時間グーグルを検索してきましたが、解決策が見つかりませんでした.
これがphpスクリプトです。に包まれています。
ドキュメント内の他のすべてのタグは html です。
<?PHP
$filelocation = "Text.txt";
if (!file_exists($filelocation)) {
echo "Couldn't find datafile, please contact the administrator.";
}
else {
$newfile = fopen($filelocation,"r");
$content = fread($newfile, filesize($filelocation));
fclose($newfile);
}
$content = stripslashes($content):
$content = htmlentities($content):
$content = nl2br($content);
echo $content;
?>