创建不同的Dropbox数组

时间:2014-03-11 09:55:00

标签: php html

是否可以创建不同Dropbox的数组

我正在寻找的结果是:

$array[0]="value of dropbox1,value of dropbox2,value of dropbox3";
$array[1]="value of dropbox4,value of dropbox5,value of dropbox6";
$array[2]="value of dropbox7,value of dropbox8,value of dropbox9";
$array[3]="value of dropbox10,value of dropbox11,value of dropbox12";

提前致谢

1 个答案:

答案 0 :(得分:0)

是的,这是可能的

$array = array();
$array[0] = array("value1", "value2", "value3");
$array[1] = array("value4", "value5", "value6");

echo $array[0][0];

请在此处试用此代码:

http://writecodeonline.com/php/