$class[] = array($row['CLASSIFY']);
成都創(chuàng)新互聯(lián)公司專注于企業(yè)全網(wǎng)營(yíng)銷推廣、網(wǎng)站重做改版、海陽(yáng)網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5技術(shù)、商城建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為海陽(yáng)等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
$kinds[] =array($row['KIND']);
別忘了加[]。
最好在前面再加上
$class = array();
$kinds = array();
防止一些未定義錯(cuò)誤。
php查詢mysql數(shù)據(jù)庫(kù)并將結(jié)果保存到數(shù)組的方法。具體分析如下:
主要用到了mysql_fetch_assoc函數(shù)
mysql_fetch_assoc語(yǔ)法如下:
?
1
array mysql_fetch_assoc (resource $Result_Set)
范例代碼如下:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
?php
$UserName = 'abc';
$Password = '1234';
$DbHandle = mysql_connect ('localhost', $UserName, $Password);
if (!$DbHandle) {
die 'No database connection could be established.';
}
$DBName = 'w3db;
if (!mysql_select_db ($DBName, $DbHandle)) {
die 'Database could not be selected.';
}
$Query = "SELECT ISBN, Title, Author FROM articles";
$articles = mysql_query ($Query, $DbHandle));
while ($Row = mysql_fetch_assoc ($articles)) {
echo "ISBN = $Row['ISBN']br /\n";
echo "Title = $Row['Title']br /\n";
echo "Author = $Row['Author']br /\n";
}
?
這保存的是不同行的內(nèi)容,不能直接保存。
要做成行的形式保存。
$data=array(); //創(chuàng)建臨時(shí)變量用以存儲(chǔ)數(shù)據(jù)
$length=count($你的array名['cwidth']); //數(shù)你有多少行數(shù)據(jù)
for($i=0; $i=$length; $i++){ //循環(huán)
$data[$i]['cwidth']=$你的array名['cwidth'];
$data[$i]['cheight']=$你的array名['cheight'];
}
出來(lái)的數(shù)據(jù)就像是這樣:
array(2){
[0]=array(2){
['cwidth']=string(5) "593px"
['cheight']=string(5) "203px"
}
[1]=array(2){
['cwidth']=string(5) "598px"
['cheight']=string(5) "111px"
}
}
然后再用$db-add($data);插入數(shù)據(jù)
首先你要學(xué)會(huì)查錯(cuò),最簡(jiǎn)單的方式就是打印出來(lái)看。你可以在第一個(gè)變量$arr_ip下一行,把這個(gè)變量打印出來(lái)看是不是數(shù)組,如果是數(shù)組,直接存入數(shù)據(jù)庫(kù)時(shí)就是array,你可以把數(shù)組json_encode一下,這樣存入進(jìn)去的就是序列化后的字符串了,但你拿出來(lái)時(shí)也要json_decode一下,把字符串還原成數(shù)組。