UPDATE [16年10月13日]如何創建HTML,PHP和MySQL
所以回來我以前在具有低信譽計算器問題之一,原因我明白爲什麼,我想要一個登錄表單更新它並使其更相關。
當我寫這個問題時,我想從基本的html表單創建一個登錄系統,這是一個更復雜的過程。
對於任何人看到這個問題,我會建議你使用一個PHP框架,爲你做所有的處理。我建議使用Laravel,因爲它擁有所有您需要的簡單登錄系統的框架,而且不需要大量的PHP,下面的示例將需要大量的PHP。
原始的問題
如何創建HTML,PHP和MySQL登錄表單?
我創建了一個形式下方觀察:
<form id="login">
<h2 id="logintxt">Log In</h2>
<h1 id="username">User Name:</h1>
<input name="Username" type="text" value="" maxlength="20" id="usernamebox" />
<h1 id="password">Password:</h1>
<input name="Password" type="password" id="passwordtxt" />
<h1 id="forgot">Forgot Password</h1>
<h1 id="register">Register</h1>
<div id="submit">
<img src="login.gif" width="100" height="40" />
</form>
具有形式導航到另一個頁面卻登錄我不喜歡,這是有它周圍的任何方式,當我看到教程?
我的MySQL的數據是:
Host: localhost
Username: root
Password: root
Database: the_tech
感謝
[更新]
這裏是我的全部HTML頁面。 http://pastebin.com/NvgzT0Xu
從這裏需要什麼來創建一個html頁面登錄?最好不要離開頁面。
我試着將這個(http://pastebin.com/1HcZGsUS)添加到我的頁面頂部,但它沒有工作。我正在關注這個(https://www.scirra.com/tutorials/525/simple-login-using-a-mysql-database)教程。
謝謝
太寬泛。 Google爲_AJAX登錄表單_。 –
請參考google或http://www.sourcecodester。com/tutorials/php/4341/how-create-login-page-phpmysql.html – Pratik
這就是全部?只需提供標記並詢問PHP代碼? –