關於這兩個函式有些問題想請教
以下是程式碼
一是能得ware中分類欄位為pot的數量
二是能將那幾列資料列出
<?
$link = mysql_connect("localhost","root","1234")or die("Connect fail");
mysql_select_db("tool")or die("Select fail");
$sqlstr = "SELECT * FROM `ware` WHERE `waretype` LIKE 'pot'";
$result = mysql_query($sqlstr)or die("query fail");
$maxrow = mysql_num_rows($result) or die("# of rows fail");
echo "共有 $maxrow 項鍋具";
$show=mysql_fetch_row($result);
print_r($show);
mysql_free_result($result)or die("Free fail");
mysql_close($link) or die("Close fail");
?>
但不知為何沒有顯示任何內容(SQL在phpmyadmin中是可以搜尋到兩筆項目的)
不知道是沒抓到資料還是...?
另外想順便問就是 mysql_query("SET NAMES 'utf8'"); 這個動作是必須的嗎
因為之前沒有在php裡特別加入也都正常 但爬文幾乎都會加入耶?