M('table')-count();
創(chuàng)新互聯(lián)專注于磐石網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供磐石營(yíng)銷型網(wǎng)站建設(shè),磐石網(wǎng)站制作、磐石網(wǎng)頁(yè)設(shè)計(jì)、磐石網(wǎng)站官網(wǎng)定制、重慶小程序開(kāi)發(fā)公司服務(wù),打造磐石網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供磐石網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
見(jiàn)手冊(cè)統(tǒng)計(jì)查詢:
方法說(shuō)明
Count 統(tǒng)計(jì)數(shù)量,參數(shù)是要統(tǒng)計(jì)的字段名(可選)
Max 獲取最大值,參數(shù)是要統(tǒng)計(jì)的字段名(必須)
Min 獲取最小值,參數(shù)是要統(tǒng)計(jì)的字段名(必須)
Avg 獲取平均值,參數(shù)是要統(tǒng)計(jì)的字段名(必須)
Sum 獲取總分,參數(shù)是要統(tǒng)計(jì)的字段名(必須)
在生成的表單元素以及之前的元素的名字加上中括號(hào)即可實(shí)現(xiàn)
比如: name="contents" = name="contents[]",最后提交獲取到的數(shù)據(jù)是一個(gè)數(shù)組形式的。
代碼如下:
form name="form1" method="post" action="index.php?action=ok"
1.input type="text" name="contents[]" value=""
2.input type="text" name="contents[]" value=""
3.input type="text" name="contents[]" value=""
input type="submit" value="提交"
/form
?php
if($_GET['action'] == 'ok'){
$contents = $_POST['contents'];
print_r($contents);
}
?
得到的數(shù)據(jù)是數(shù)組形式的,遍歷即可。
$db?=?new?mysqli(.......);//數(shù)據(jù)庫(kù)連接你自己寫(xiě)
$db?-?query('SET?NAMES?數(shù)據(jù)編碼');
$Rel?=?$db?-?query('select?*?from?表名稱');
while?(?$rs?=?$Rel?-?fetch_array()?)?{
echo?$rs['字段名稱'];
}