James Woods wrote: > That leading space is causing me headaches. when trying to do a foreach > on the array, after submitting the form.
instead of packing a huge array into one form var like this: <input type='hidden' name='drawHidden' value='@Draw'> why not pass it like this (in your html): <input type="hidden" name="drawHidden" value="$Draw[0]"> <input type="hidden" name="drawHidden" value="$Draw[1]"> etc... then you can process it as such: @drawHidden = $cgi->param('drawHidden'); -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]