Ok I got a script called PickList Script that I want to use. My problem is that on submit it submits multiple values under the same name, I need to get all those values in 1 string or array. The URL (if used $_GET, im using $_POST but just to explain) looks like: I need to get all the PickList values in one string or array. How do I do this ? If needed im using this script: http://www.javascriptkit.com/script/script2/picklist.shtml Thnx will rep you if you help me out
try using var_dump($_POST); or print_r($_POST); to show a list of variables and there "Box Numbers" and then create a foreach loop to do what you will with your data if you need!