I wrote PHP script for multiple data entry for editing and update
My screen is
Field1 field2
Field3
Multiple entry block
line 1 ID[] QTY[] Location[]
line 2 .....
line 3 .....
line 4 .....
line 5 .....
End of multiple entry block
Filed filed4
and my code is
First read data from Oracle database and put into screen field array ID[]
and when I change some entry and preesing the Update submit button I lost screen field array content thats are ID[] and QTY[] ... I call this for with
<FORM ACTION="'. $PHP_SELF .'" METHOD="GET"> and when I looked at the location of the browser There are values in the array like that
http://dnc-backup/qms/edit_case_rec.php?c_code=89382&num=010442&ID%5B%5D=01&qtyf%5B%5D=fff&location5B%5D=zzzz .......
for non array fields there were no problem. I need help How can I overcome this problem.