> php教程 > php手册 > 12306账号泄露查询工具,sae部署,稳定可用

12306账号泄露查询工具,sae部署,稳定可用

WBOY
풀어 주다: 2016-06-06 19:37:10
원래의
1437명이 탐색했습니다.

今天上午刚同事发来的数据。做了一个: http://www.atool.org/12306.php 代码很简单,主要就是数据文件导入到数据库中就好了~不知道贴什么代码,就贴数据库查询的这个类吧~ 无 ?phprequire_once 'mysql.class.php';/** * 仅供参考 */class D12306Dao extends

今天上午刚同事发来的数据。做了一个:

http://www.atool.org/12306.php


代码很简单,主要就是数据文件导入到数据库中就好了~不知道贴什么代码,就贴数据库查询的这个类吧~
<?php
require_once 'mysql.class.php';
/**
 * 仅供参考
 */
class D12306Dao extends Mysql {

    public function __construct() {
        parent::__construct();
    }

	//邮箱
	public function find_by_email($keyword) {
        $sql = "select name from d12306 where email = '$keyword';";
        return $this->exec_query($sql);
    }
	//身份证
	public function find_by_uid($keyword) {
        $sql = "select name from d12306 where uid = '$keyword';";
        return $this->exec_query($sql);
    }
	//账号
	public function find_by_userid($keyword) {
        $sql = "select name from d12306 where userid = '$keyword';";
        return $this->exec_query($sql);
    }
	
    public function insert($email, $userid, $name, $uid, $password, $phone) {
        $sql = "insert into d12306(email, userid, name, uid, password, phone) values('$email', '$userid', '$name', '$uid', '$password', '$phone');";
        return $this->exec_update($sql);
    }
}
?>
로그인 후 복사
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿