php ファイルを開いて直接ダウンロードしました
私は PHP を初めて使用し、非常に簡単なコードを作成しましたが、ブラウザを開いたときに PHP ファイルが直接ダウンロードされました。Apache 環境に問題があると思われます。助けていただけますか?
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <html> <form action="test.php" method="POST"> <table> <tr> <td>Name: <input type="text" name="name" size=10 maxlength=10></td> <td><input type="submit" value="Submit"></td> </tr> </table> </form> </html>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <html> <body> <?php $name = $_POST['name']; echo 'isset($name)'.isset($name).'<br />'; echo 'isempty($name)'.empty($name).'<br />'; echo 'isset($null)'.isset($isnull).'<br />'; echo 'isempty($null)'.empty($isnull).'<br />'; ?> </body> </html>