Posted by luigi7up on 01/22/07 11:14
Hi, I'm having a problem with submiting a form.
My form has two submit buttons:
<input name='task' value='refresh' type='image'
src='images/osvjezi.jpg' />
<input name='task' value='add' type='image' src='images/osvjezi.jpg' />
When I submit data I get it from $_POST['task'] without problem in
Firefox but in IE there is no way.
I found one solution somewhere on the web:
<input name= 'task[0]' value='refresh' type='image'
src='images/osvjezi.jpg' />
<input name= 'task[0]' value='add' type='image'
src='images/osvjezi.jpg' />
To get $task value I should do following: $_POST['task'][0].
This solution worked fine for a while. Now it doesn't work again...
If firefox for $_POST['task'][0] i get good value but in IE I don't.
If I print_r$_POST['task'] in IE I get: [task] => Array ( [0] => 18 )
while I should be getting
[task] => Array ( [0] => refresh )
I could always name the buttons diferently but that isn't solution in
striving for...:)
Thanx
[Back to original message]
|