<?php
$SqlStr="select * from tp01 where isdel<>'1' order by cast(sortno as decimal)";
$res_bcate= $db->get_results($SqlStr);
$rec_cnt_bcate=count($res_bcate);
?>
第一行用一個變數保存要執行的SQL命令
第二行,跟資料庫下SQL命令,並反回結果資料
類似在sql server studio下命令
第三行,變數紀錄DB返回結果的行數(舉例:5行資料 count值 = 5)