Dear News Groupers,
I'am trying to send a php array with a hidden input field from a form to
another script.
The array is NOT made directly by way of <input name="arrayname[]" />.
The array is made by normal php code and then
submitted between form-tags as
echo "<input type='hidden' name=\"arraynam e\" value=\"$arrayn ame\" />" ;
I can see that the receiving script receives the array but it counts only 1
item and not the presumed amount.
Can this be done?
And how should it be done then?
TIA,
pablo
I'am trying to send a php array with a hidden input field from a form to
another script.
The array is NOT made directly by way of <input name="arrayname[]" />.
The array is made by normal php code and then
submitted between form-tags as
echo "<input type='hidden' name=\"arraynam e\" value=\"$arrayn ame\" />" ;
I can see that the receiving script receives the array but it counts only 1
item and not the presumed amount.
Can this be done?
And how should it be done then?
TIA,
pablo
Comment