我有一個簡單的登錄頁面,有2個文本框和一個按鈕。當我按「提交」時,URL變成了php頁面,但我完全沒有看到。我不知道如何解決它,所以我希望有人能幫助我。表單提交(POST)到PHP頁面給出空白頁面,除非我刷新
我的HTML頁面:
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<link rel="stylesheet" href="style2.css" />
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<link rel="stylesheet" href="themes/customtheme.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<a class="ui-btn-left" href="index.html" data-icon="back">Back</a>
<h1><span>Login</span></h1>
<a class="ui-btn-right" href="#" data-icon="info">i & €</a>
</div>
<div data-role="content" data-position="relative">
<div class="loginform">
<form id="loginForm" action="login.php" method="POST">
<span>Email adress:</span>
<input type="text" name="email" id="email"></input>
<span>Password:</span>
<input type="password" name="password" id="password"></input>
<input type="submit" value="Login" />
</form>
</div>
</div>
<div data-role="footer" data-position="fixed"></div>
</div>
</body>
</html>
而且我的login.php:
<?php session_start();
error_reporting(E_ALL);
ini_set('display_errors',TRUE);
ini_set('display_startup_errors',TRUE);
echo ("Test");
?>
我甚至不看 '測試',也沒有任何錯誤...
在'session_start()'之前放置一個回顯。如果你甚至沒有看到,那麼在腳本能夠達到其他代碼之前就會殺死腳本。 ini_set/reporting的更改應該在php.ini級別進行,所以當腳本嘗試啓動時它們纔會生效。嘗試在啓動後更改它們是沒有意義的,如果這是一個啓動錯誤,則會導致其他操作無效。 –
@MarcB正在做些什麼......確保你在php.ini中設置了['error_log'](http://us2.php.net/manual/en/errorfunc.configuration.php#ini.error-log)所以你至少可以得到致命的啓動錯誤(和其他)。 –
嘗試回顯「在回聲前刪除3行之後進行測試,並逐一添加每行並查看哪一個導致問題,如果仍然不起作用,則意味着其他事件導致腳本根本不運行。 – Justin