php對mysql資料庫操作的幾個問題

時間 2022-02-03 06:30:11

1樓:匿名使用者

一下是php對資料庫的一些基本操作,樓主你看看吧。看完就上機實踐加深一下印象。懂得這些後再學php就容易很多的了。

conn.php //連線mysql資料庫

<?php

$id=mysql_connect("127.0.0.1","root","") or die('連線失敗:'.mysql_error());

if(mysql_select_db("test_moonlitshiny ",$id))

echo"";

else

echo('資料庫連線失敗:'.mysql_error());

mysql_query("set names utf8");

?>

select.php //搜尋資料庫

<?php

$id=mysql_connect("127.0.0.1","root","") or die('連線失敗:'.mysql_error());

if(mysql_select_db("test_moonlitshiny ",$id))

echo"";

else

echo('資料庫連線失敗:'.mysql_error());

mysql_query("set names utf8");

$lineid=1;

$query=mysql_query("select * from test_moonlitshiny where id='$lineid'");

if($query==true)

}insert.php //插入資料

<?php

$id=mysql_connect("127.0.0.1","root","") or die('連線失敗:'.mysql_error());

if(mysql_select_db("test_moonlitshiny ",$id))

echo"";

else

echo('資料庫連線失敗:'.mysql_error());

mysql_query("set names utf8");

$n1=」hello」;

$n2=」world」;

$n3=」helloworld」;

$query="insert into test_moonlitshiny(q1,q2,q3)values('$n1','$n2','$n3')";

$result=mysql_query($query);

if($result==true)

else

?>

update //更新

<?php

$id=mysql_connect("127.0.0.1","root","") or die('連線失敗:'.mysql_error());

if(mysql_select_db("test_moonlitshiny ",$id))

echo"";

else

echo('資料庫連線失敗:'.mysql_error());

mysql_query("set names utf8");

$id=1;

$n1=」hello」;

$n2=」world」;

$n3=」helloworld」;

$query=mysql_query("update test_moonlitshiny set q1='$n1',q2='$n2',q3='$n3' where id='$id'");

if($query==true)

else

?>

delete.php //刪除

<?php

$id=mysql_connect("127.0.0.1","root","") or die('連線失敗:'.mysql_error());

if(mysql_select_db("test_moonlitshiny",$id))

echo"";

else

echo('資料庫連線失敗:'.mysql_error());

mysql_query("set names utf8");

$id=1;

$query=mysql_query(「delete from test_moonlitshiny where id=』$id』」);

if($query==true)

else

2樓:匿名使用者

讀取:select

新增:insert、create

更新:update

刪除:delete

php執行語句:mysql_query

php操作mysql資料庫select的問題

3樓:請叫我召哥

select aaa,bbb from table where id= 1

php怎麼運算元據庫

PHP5 MYSQL 資料庫連線

連線資料庫。mconn mysql connect localhost root password or die 資料庫連線失敗!mysql select db db mconn 設定編碼集。mysql query set names gb2312 用 or die 來判斷。或者你自己用 if mc...

使用PHP向MYSQL資料庫插入中文資料時,頁面中文顯示正常

這個問題不大。主要匯出來是亂碼才問題。你檢查過頁面是不是utf8的沒有,不行最上面加上 header content type text html charset utf 8 好像是utf 8,你可以試試utf8,gb2312總有一個可以的啦。你在資料庫裡看,你在資料庫裡打 set names ut...

如何檢視mysql資料庫操作記錄日誌

愛可生雲資料庫 這是乙個慢查詢日誌的展示工具,能夠幫助 dba 或者開發人員分析資料庫的效能問題,給出全面的資料擺脫直接檢視 slow log。qan query analytics pmm 目前有 2 個版本,但是對於 qan 來說其大致由三部分組成 qan agent client 負責採集 s...