ホームページ  >  記事  >  バックエンド開発  >  小辞典(php)

小辞典(php)

WBOY
WBOYオリジナル
2016-06-23 13:28:30969ブラウズ

  • フロント ページ (enword.php) をクエリする

  • <html><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8"></head><body><img src="1.png"/><h1>英汉词典</h1><form action="enw.php" method="post">请输入英文:<input type="text" name="enword" /><input type="submit" value="查询" name="serch" /></form></body></html>

    2. データベース操作クラスを作成する (ewTool.class.php)

    <html><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8"></head><body><?phpclass enwTool{    protected $conn;    private $host="127.0.0.1";    private $user="root";    private $password="";    protected $bd="php_dic";    //构造函数声明变量    public function __construct()    {        $this->conn=mysql_connect($this->host,$this->user,$this->password) or die("链接失败");        mysql_select_db($this->bd);        mysql_query("set names utf8");    }    //查询数据库语句    public function dql($sql)    {        //$res为资源型        $res=mysql_query($sql,$this->conn) or die(mysql_error());        return $res;    }    //添加数据库语句    public function dml($sql)    {        $b=mysql_query($sql,$this->conn);        if(!$b)        {            return 0;        }        else        {            if(mysql_affected_rows($this->conn))            {                return 1;            }            else            {                return 2;            }        }        }}?></body></html>

    3. 追加フロント ページ (add.php) を作成する

    <html><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8"></head><body><h1>请添加英汉</h1><form action="dml.php" method="post">请输入英文:<input type="text" name="eng"/>请输入中文:<input type="text" name="chi"><input type="submit" value="添加"></form></body></html>

    4 . インスタント ラーメンの dml ステートメント コード。

    rreee

    上記はphpコードです。

    mysqlの操作も重要です!

  • データベースを作成する


  • データベースを作成する php_dic;

    2. テーブルを作成する

    テーブルを作成する dic(

    dic_id int Primary key auto_increment,

    enword varchar(20) not null default'',

    チャットワードvarchar(200) not ull default''

    )setcharacter utf8;

    3.文字セットを設定します

    名前を設定します utf8;

    4.データベーステーブルエンコーディングとテーブルエンコーディングを設定します

    データベース php_dic 文字セット utf8 を変更します

    テーブル dic 文字セット utf8 を変更します

    その後、クエリと追加を行うことができます~~


    声明:
    この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。