i have a problem in codeigniter project . codeignter has filter and delete keys of array and also some value . my html is
<input type="text" name="n['rrr'][]">
<input type="text" name="n['rrr2'][]">
and php code
echo "<pre>";
print_r($_POST['n']);
echo "</pre>";
and also i add same code to begin of index.php in the root path
result is
Array
(
['rrr'] => Array
(
[0] => llll
)
['rrr2'] => Array
(
[0] => kkkkkk
)
)
Array
(
[0] => Array
(
[0] => kkkkkk
)
)
array 1 is showed from index and second from the controller .
and thanks .