<?php
//step 1
$link=mysql_connect("localhost", "root", "123456") or die("connect error!");
//step 2
mysql_select_db("xsphpdb") or die("select db error!");
function table($tabname) ";
$sql="desc shops";
//result
$result=mysql_query($sql);
/** 一、從結果集中將記錄取出
* mysql_fetch_row($result) //返回索引陣列
* mysql_fetch_assoc($result) //返回關聯陣列(下標:就是列表)
**
以上兩個使用哪個看個人愛好**
* mysql_fetch_array($result) //返回索引和關聯兩個陣列
* mysql_fetch_object($result)//將一條記錄以物件的形式返回
**
一次從結果集中取出一條記錄**
將指標移到到下一條記錄(預設是第一記錄,mysql_data_seek($result , row))**
再取就是下一條記錄,如果到結尾則返回false
** 二、從結果集中將表的字段
** 其它: 取行數,列數, 從那行開如取**/
$cols=mysql_num_fields($result);
$rows=mysql_num_rows($result);
echo '';
echo '
';echo '';
for($i=0; $i<$cols; $i++)
echo '';
while($row=mysql_fetch_assoc($result))
echo '';
}echo '';
echo "表[列,行]
";//close
mysql_free_result($result);
}table('users');
table('shops');
table('article');
table('db25.users');
table('mysql.user');
mysql_close();
php學習筆記4
php資料型別 string 字串 integer 整型 float 浮點型 boolean 布林型 array 陣列 object 物件 null 空值 說明 var dump 方法,判斷乙個變數的型別與長度,並輸出變數的數值,如果變數有值,則輸出是變數的值,並返回資料型別。顯示關於乙個或多個表示...
php學習筆記4 php函式
php header content type text html charset utf 8 輸出中文編碼 function fun name str1,str2,strn 說明 function 為宣告自定義函式時必須使用到的關鍵字 fun name 自定義函式的名稱 str1.strn 函式引...
PHP 文件學習 4 函式
1.自定義函式 1 函式呼叫前不用定義,除非是有條件的定義 2 所有函式都具有全域性作用域 3 不支援函式過載 4 函式名稱大小寫不敏感 變數名大小寫敏感 5 引數加 將使用引用傳參 6 可以多傳引數,不能少傳 7 預設引數可使用陣列 必須為常量表示式 8 實現可變引數列表 func num arg...