Changeset 4608 for temp/trunk/html/forgot
- Timestamp:
- 2006/09/11 19:37:56 (20 years ago)
- File:
-
- 1 edited
-
temp/trunk/html/forgot/index.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/html/forgot/index.php
r3634 r4608 25 25 //¥á¥¢¥ÉÆþÎÏ»þ 26 26 $_POST['email'] = strtolower($_POST['email']); 27 $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND status = 2 AND del ete= 0";27 $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND status = 2 AND del_flg = 0"; 28 28 $result = $conn->getAll($sql, array($_POST['email']) ); 29 29 … … 36 36 $objPage->tpl_mainpage = 'forgot/secret.tpl'; 37 37 } else { 38 $sql = "SELECT customer_id FROM dtb_customer WHERE email ILIKE ? AND status = 1 AND del ete= 0"; //²¾ÅÐÏ¿Ãæ¤Î³Îǧ38 $sql = "SELECT customer_id FROM dtb_customer WHERE email ILIKE ? AND status = 1 AND del_flg = 0"; //²¾ÅÐÏ¿Ãæ¤Î³Îǧ 39 39 $result = $conn->getAll($sql, array($_POST['email']) ); 40 40 if ($result) { … … 51 51 // ¥Ò¥ß¥Ä¤ÎÅú¤¨¤Î²óÅú¤¬Àµ¤·¤¤¤«¥Á¥§¥Ã¥¯ 52 52 53 $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND del ete= 0";53 $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND del_flg = 0"; 54 54 $result = $conn->getAll($sql, array($_SESSION['forgot']['email']) ); 55 55 $data = $result[0];
Note: See TracChangeset
for help on using the changeset viewer.
