2016-01-13 37 views
-2

codeigniter我必須張貼一個二維數組array[$index][$index]某些變量。如何在$val[$index][$index];上發佈數組中的值?如何張貼codeigniter中的array [] []

我不得不嘗試一些像這樣的代碼,但沒有工作corectly:

​​

,我應該如何努力得到這個工作有什麼想法?

謝謝!

+0

$ val = $ this-> input-> post('criteria'); ? – siimsoni

+0

檢查此鏈接http://stackoverflow.com/questions/9073690/post-an-array-from-an-html-form-without-javascript – MasoodUrRehman

回答

0

在一個html表單中,你可以添加一個名字有雙方括號的字段。像:

<input name="myVal[][]" /> 

然後發佈到一個形式爲php。 在你的PHP文件的寫:

echo '<pre>';print_r($_POST);'</pre>'; 

你會看到貼有場。你可以使用codeigniter獲得這張貼數據:

$this->input->post('myVal'); 
+0

不錯的一個它的作品非常感謝你.. – hegyfebrianto