mysql網頁化 頁面化運算元據庫

2021-10-18 06:58:05 字數 1356 閱讀 4920

首先預設選擇庫test1,01.php中然後用show tables;查詢出所有的表,然後用迴圈依次輸出所有的表名,和操作超連結,超連結上對應有該錶的資訊傳到02.php,02.php中,根據接收到的引數,查詢到該錶,然後用desc 表名,結果迴圈輸出表欄位名,再查詢出所有字段迴圈輸出對應的值,後面有操作超連結,存有該行資料的資訊,傳到03.php.03.php可以更改

01.php

$conn=mysql_connect("localhost","root","111111");

mysql_query("set names utf8",$conn);//設定編碼

mysql_query("use test1");//選庫

$sql="show tables";

$rs=mysql_query($sql,$conn);

列出所有表

所有的表

表名操作

while($row=mysql_fetch_assoc($rs)){

echo "

"; echo "

",$row["tables_in_test1"],"";

echo "

"," 編輯";

echo "";

02.php

$conn=mysql_connect("localhost","root","111111");

mysql_query("set names utf8",$conn);//設定編碼

mysql_query("use test1");//選庫

$table=$_get['table'];//接收資料

addslashes($table);

$sql="select * from ".$table;

$rs=mysql_query($sql,$conn);

$sql="desc ".$table;

$ziduan=mysql_query($sql,$conn);

表中所有的資料

$i=0;//記錄多少字段

echo "

"; while($row=mysql_fetch_row($ziduan)){

echo "

",$row[0],"";

$i++;

echo "

操作";

echo "

"; while($row=mysql_fetch_row($rs)){

echo "

"; for($a=0;$a

echo "

",$row[$a],"";

echo "

編輯";

echo "";

03.php

待定

MySQL 運算元據庫

資料庫是指長期儲存在計算機內,有組織的 可共享的資料集合。簡而言之,資料庫就是乙個儲存資料的地方。只是,其儲存方式有特定的規律。這樣可以方便處理資料。資料庫的操作包括建立資料庫和刪除資料庫。這些操作都是資料庫管理的基礎 建立資料庫是指在資料庫系統中劃分一塊空間,用來儲存相應的資料。這是進行表操作的基...

php運算元據庫mysql

mysql connect在將來的php版本會被廢棄,建議用mysqli或者pdo代替 mysql create table people id int unsigned primary key auto increment,name varchar 20 age int header conten...

flask運算元據庫MySQL

注意 與sqlite不同,flask sqlalchemy並不會為mysql 主動去建立乙個database。所以需要自己手動在mysql中建立乙個相應的資料庫,然後才能使用flask sqlalchemy對相應資料進行操作。如果沒有事先建立,是不能使用mysql的。1 修改mysql密碼 mysq...