php串連資料庫與增刪改查

來源:互聯網
上載者:User

標籤:

方法一,這種方式容易彈出警告:

1、資料訪問:

$uid="root";使用者名稱

$pwd="123";密碼

$host="localhost";伺服器

$database="test";串連哪個資料庫

2、產生串連:

$conn=mysql_connect($host,$uid,$pwd);host伺服器

3、選擇要操作的資料庫:

mysql_select_db($database,$conn);

4、執行mySQL語句:

$r=mysql_query("select*from Users");

5、(1)從返回結果中提取資料

//$row=mysql_fetch_row($r);

(2)提取所有資料:

$s="";

while($row=mysql_fetch_row($r))

{

$s=$s.$row[2]."<br>";

}

6、輸出:

echo $s;

 

資料訪問(方法二):

 資料訪問
 $uid = "root";
 $pwd = "123";
 $host="localhost";
 $database = "test";

//1.產生連線物件
 $db = new mysqli($host,$uid,$pwd,$database);
 
 //2.判斷是否串連成功
 if(mysqli_connect_error())
 {
  echo "串連失敗!";
  exit; //退出
 }
 /*
 //3.執行MYSQL語句
 $result = $db->query("select * from Users");
 
 //4.提取資料
 $s = "<select>";輸出一個下拉式清單
 while($row = $result->fetch_row())
 {
  $s = $s."<option value=‘".$row[0]."‘>".$row[2]."</option>"; value是主鍵,輸出第[2]個元素
 }
 $s = $s."</select>";
 
 echo $s;*/    以上產生一個下拉式清單

增加資料:

$result=$db->query("insert into Users values(‘hsl‘,‘123‘,‘韓松霖‘)");添加一條資料

if($result)    判斷是否添加成功

{

echo"添加成功"

}

 

php串連資料庫與增刪改查

相關文章

聯繫我們

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