PHP自學之路——–PHP資料庫編程

來源:互聯網
上載者:User
PHP資料庫編程PHP有三種方式來操作我們的資料庫:1、mysql擴充庫2、mysqli擴充庫3、pdomysql擴充庫和mysql資料庫的區別下面就來mysql擴充庫來介紹 :1、mysql資料庫是用來存放資料的2、mysql資料庫的三層結構:  所有資料庫基本上都遵循這三種結構 , 3、mysql擴充庫是一堆函數,是PHP設計者提供給程式員完成對mysql資料庫的各種操作(CRUD)使用PHP的mysql擴充庫完成對資料庫的操作:1、環境搭建1.1 啟用mysql擴充庫
        在PHP.ini檔案中去配置mysql擴充庫             extension=php_mysql.dll              extension=php_mysqli.dll        我們可以通過<?php phpinfo();?> 來查看目前支援哪些庫功能1.2 建立一張使用者表,供我們使用
create table user1(id int primary key auto_increment,name varchar(32) not null,password varchar(64) not null,email varchar(128) not null,age tinyint unsigned not null)

插入資料    

insert into user1(name,password,email,age) value('jsh',md5('123456'),'1234567@qq.com',20)
     
這裡我們對密碼進行了加密
當我們將使用者名稱是漢字時,回報錯誤,需要進行設定




 

 

  • 上一篇:PHP自學之路-------檔案下載
0
0

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.