Posted by Leszek on 02/01/06 18:44
Hi.
I'm using
<pre><?php print_r($_POST['dane']); ?>
</pre>
and i'm getting this:
Array
(
[1] => Array
(
[\'zamow\'] => Array
(
[0] => 1
)
)}
So then i tried
<pre><?php print_r($_POST['dane'][1]); ?>
</pre>
Array
(
[\'zamow\'] => Array
(
[0] => 1
)
)But when i'm trying with:<pre><?php print_r($_POST['dane'][1]['zamow']); ?>
</pre>I'm getting no resultsWhat is wrong? What should to see result?
Thanks
Leszek
Navigation:
[Reply to this message]
|