1
なぜ私が送信ボタンを押して、私のPHPページに行くためのアクションが起こるのか、興味がありますか、ページは単にaction_page.phpに変わり、 phpファイル全体の平面黒いテキストを持っています。明らかに、これはPhpファイルが実行されていないことを意味しますが、私の人生の理由は理解できません。PHPが誤読されていて、コードがプレーンHTMLテキストに変換されています
私はphpがPHPバージョン7.0.4としてインストールされていることを知っており、私のサーバはうまく動作しています。ここで
はPHPです:
<!DOCTYPE html><!-- login.html -->
<?php include "../php/action_page.php"; ?>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Login</title>
<link href="css/login_2.css" rel="stylesheet">
</head>
<body>
<div class="login-form">
<form id = "login_form" action="php/action_page.php" method ="POST">
<h1> Login </h1>
<input type='hidden' name='submitted' id='submitted' value='1' />
<div class="form">
<input type ="text" name='username' class="credentials-form" placeholder="Username" id="Username">
</div>
<div class="form data">
<input type ="password" name='password' class="credentials-form" placeholder="Password" id="Password">
</div>
<input type='submit' name='Submit' value='Login' class='button'/>
<button type="button" class="button" id="acc" onclick="location.href='createAccount.html';"><span>Create Account</span></button>
</form>
</div>
7.xでPHPを実行しても、mysql_関数のセットは存在しません。それにも留意してください。新しいmysqli_と古いものを混在させることはできません。それらは交換できません。 – Rasclatt
@rasclatt大変ありがとうございます! – TheRealSoCal
- echo "something"のような簡単なPHPファイルを実行できますか?あなたの現在のPHPのバージョンとサーバーで? –