微信開發MySQL篇(一)

2021-08-03 05:39:13 字數 1389 閱讀 8273

1mysql是一種資料庫,定義儲存資訊的結構。

2mysql資料庫連線,並建立資料庫和資料庫表:步驟是:首先連線資料庫,然後建立資料庫(現在沒有考慮資料庫已存在,建立的是不存在的資料庫),然後選擇這個資料庫,目的是告訴程式在哪個資料庫中建立表,或者執行其他操作。一般先將操作儲存在乙個變數中,然後去將變數寫入操作,這樣看起來更清楚。之後操作完,關閉資料庫。

1)通過mysql_connect(severname,username,password)這個函式進行連線。

<?php

$con=mysql_connect("localhost:","root","password");//連線資料庫

if(!$con)else{

echo "false".mysql_error();//否則告訴失敗,返回錯誤資訊。

mysql_select_db("my_db",$con);

$sql="create table persons(

firstname varchar(15),

lastname varchar(15),

age int

)";//要寫入的資料庫操作,先儲存在sql變數中

mysql_query($sql,$con);

mysql_close($con);//關閉資料庫

主鍵和自動遞增字段

每乙個表都有乙個主鍵,每個主鍵也是唯一的。不能為空,用於資料庫引擎對記錄進行定位。

主鍵永遠要被編入索引。必須對主鍵字段進行索引。

$sql="create table persons(

personid int not null auto_increment,//確保不為空,自增

primary key(personid),//主鍵

firstname varchar(15),

lastname varchar(15),

age int

mysql_query($sql,$con);

資料庫表插入

insert into table_name(column1,column2.....)values(value1,value2......)

<?php

$con=mysql_connect("localhost","root","password");

if(!con){

die("cannot connect".mysql_error());

mysql_select_db("my_db",$con);

mysql_query("insert into persons(firstname,lastname,age) values("zhang","san","20")");

mysql_close($con);

那麼如何將我們頁面表單的資料存入資料庫呢?

微信開發MySQL篇(二)

如何將頁面表單資料存入資料庫呢?表單內資料可以提交到乙個php檔案中,然後通過post或者get方式我們可以獲取到這些資訊,然後通過資料庫操作進行儲存。來乙個簡單的例子 con mysql connect localhost root password if con die cannot conne...

微信開發(一)

實現內網穿透 步驟1 在www.ngrok.cc官網註冊乙個自己的隧道 步驟2 ngrok客戶端 步驟3 在客戶端開啟 sunny ngrok啟動工具.bat 這個檔案步驟1 開啟 步驟2 點開服務號,點開開發者文件 步驟3 開始開發,介面測試號申請 步驟4 填寫介面配置資訊 token 自定義,需...

微信開發 微信一般幫助類

public class commonutil return res 生成簽名的隨機串 public static string createnoncestr return res 生成簽名的時間戳 public static string createtimestamp js ticket url...