【正文】
lts in HTML echo table\n。 while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) { echo \ttr\n。 foreach ($line as $col_value) { echo \t\ttd$col_value/td\n。 } echo \t/tr\n。 } 七 、 編寫 PHP程序與數(shù)據(jù)庫交互 echo /table\n。 // Free resultset mysql_free_result($result)。 // Closing connection mysql_close($link)。 ? 七 、 編寫 PHP程序與數(shù)據(jù)庫交互 ? 2 MySQLi函數(shù)庫 MySQLi是一個改進版的 PHP MySQL函數(shù)庫,同時提供了面向過程和面向對象兩種形式的使用接口。 七、編寫 PHP程序與數(shù)據(jù)庫交互 ? ?php ? $mysqli = new mysqli(localhost, my_user, my_password, world)。 ? /* check connection */ ? if (mysqli_connect_errno()) { ? printf(Connect failed: %s\n, mysqli_connect_error())。 ? exit()。 ? } ? /* Create table doesn39。t return a resultset */ ? if ($mysqliquery(CREATE TEMPORARY TABLE myCity LIKE City) === TRUE) { ? printf(Table myCity successfully created.\n)。 ? } 七 、 編寫 PHP程序與數(shù)據(jù)庫交互 /* Select queries return a resultset */ if ($result = $mysqliquery(SELECT Name FROM City LIMIT 10)) { printf(Select returned %d rows.\n, $resultnum_rows)。 /* free result set */ $resultclose()。 } /* If we have to retrieve large amount of data we use MYSQLI_USE_RESULT */ if ($result = $mysqliquery(SELECT * FROM City, MYSQLI_USE_RESULT)) { 七 、 編寫 PHP程序與數(shù)據(jù)庫交互 /* Note, that we can39。t execute any functions which interact with the server until result set was closed. All calls will return an 39。out of sync39。 error */ if (!$mysqliquery(SET a:=39。this will not work39。)) { printf(Error: %s\n, $mysqlierror)。 } $resultclose()。 } $mysqliclose()。 ? 八、用 PHP實現(xiàn)典型的增刪改查功能 ? 數(shù)據(jù)添加功能的實現(xiàn) 八、用 PHP實現(xiàn)典型的增刪改查功能 ? 數(shù)據(jù)瀏覽功能的實現(xiàn) ? 數(shù)據(jù)查詢功能的實現(xiàn) ? 數(shù)據(jù)刪除功能的實現(xiàn) ? 數(shù)據(jù)編輯功能的實現(xiàn) 第五講 電子商務網(wǎng)站框架與風格設計 演講完畢,謝謝觀看!