国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > PHP > 正文

CodeIgniter表單驗證方法實例詳解

2024-05-04 23:43:27
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了CodeIgniter表單驗證方法,結合實例形式詳細分析了CodeIgniter進行表單驗證的具體步驟與相關實現技巧,需要的朋友可以參考下
 

本文實例講述了CodeIgniter表單驗證方法。分享給大家供大家參考,具體如下:

1.在D:/CodeIgniter/system/application/views目錄下寫一個視圖文件myform.php

<html><head><title>My Form</title></head><body><?php echo $this->validation->error_string;?><?php echo form_open('form/index');?><h5>Username</h5><input type="text" name="username" value="" size="50" /><h5>Password</h5><input type="text" name="password" value="" size="50" /><h5>Password Confirm</h5><input type="text" name="passconf" value="" size="50" /><h5>Email Address</h5><input type="text" name="email" value="" size="50" /><div><input type="submit" value="Submit" /></div></form></body></html>

然后再寫一個視圖文件formsuccess.php

<html><head><title>My Form</title></head><body><h3>Your form was successfully submitted!</h3><p><?=anchor('form', 'Try it again!'); ?></p></body></html>

2.在D:/CodeIgniter/system/application/controllers目錄下寫一個控制器文件form.php

<?phpclass Form extends Controller{ function index(){ $this->load->helper(array('form','url')); $this->load->library('validation');   $rules['username'] = "required";    $rules['password'] = "required";    $rules['passconf'] = "required";    $rules['email'] = "required";    $this->validation->set_rules($rules); //    $this->validation->set_error_delimiters('<div class="error">','</div>'); $fields['username'] = 'Username'; $fields['password'] = 'Password'; $fields['passconf'] = 'Password Confirmation'; $fields['email'] = 'Email Address'; $this->validation->set_fields($fields);   if ($this->validation->run()==false) {   $this->load->view('MyView/myform');   }else {   $this->load->view('MyView/formsuccess.php');   } }}?>

3.http://localhost:8888/index.php/form/index訪問一下

Ok,結果都出來了



注:相關教程知識閱讀請移步到PHP教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 运城市| 三明市| 栖霞市| 临夏县| 亳州市| 岳阳市| 绍兴市| 洪洞县| 婺源县| 石阡县| 沾益县| 云龙县| 龙门县| 西平县| 桐柏县| 辽源市| 黑河市| 三明市| 黄陵县| 广南县| 青州市| 辰溪县| 华阴市| 保定市| 沙坪坝区| 平泉县| 无锡市| 锦屏县| 鄂温| 平山县| 合作市| 儋州市| 内黄县| 舒兰市| 顺平县| 始兴县| 伽师县| 广昌县| 林口县| 嘉兴市| 台中县|