php基礎教程——2建立模板、處理表單

來源:互聯網
上載者:User

標籤:php基礎教程   php學習練習總結   php建立模板   php處理表單   後台開發   

一.建立模板:

將頁面中經常出現的部分複製到一個html或php檔案中,在原頁面中用require()/include()函數引入。

例子:

源html:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>test</title><base> <body> <form action="handle.php" method="post"> <p> Name:<select name="title"> <option value="Mr">Mr</option> </select> <input type="text" name="name" size="20"/></p> <input type="submit" value="send"></form><div><p>This is the foot of the document</p></div></body> </html> 

 複製的頭部:header.html:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>test</title><base> <body> 

複製的尾部:footer.html:

<div><p>This is the foot of the document</p></div></body> </html> 

合成模板:ws.php

<?phprequire('header.html');?><form action="handle.php" method="post"> <p> Name:<select name="title"> <option value="Mr">Mr</option> </select> <input type="text" name="name" size="20"/></p> <input type="submit" value="send"></form><?phprequire('footer.html');?>


二、處理表單——讓一個頁面同時顯示和處理表單

使用條件陳述式:

if (表單提交) { 處理表單 }

else { 顯示表單 }


例子:簡單的 使用者名稱-密碼驗證 


輸入:使用者名稱:YF  密碼:123456

顯示:登陸成功

裁圖:




代碼:ws.php(其中header.html、footer.html引用的是上文中的模板):

<?phpdefine('TITLE', 'Login');require('header.html');if (isset($_POST['submitted'])) {if ((!empty($_POST['name'])) && (!empty($_POST['password']))){if ((strtolower($_POST['name']) == 'yf') && ($_POST['password'] == '123456')){// name and password are correct.print '<p> logged in !</p>';}else {print '<p> name or password is worry!</p>';}}else {print '<p> make sure you enter both name and password!</p>';}}else {print '<form action="ws.php" method="post">  <p> Name:<input type="text" name="name"  size="20"/></p>  <p>Password:<input type="password" name="password" "size="20" /></p> <input type="submit" value="send"> <input type="hidden" name="submitted" value="true"/></form>';}require('footer.html');?>



php基礎教程——2建立模板、處理表單

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.