floydspring
New Member
I have the following form:\[code\]<form action="download.php" method="get"><input type="checkbox" name="file1" /> File1 <br/><input type="checkbox" name="file2" /> File2 <br/><input type="checkbox" name="file3" /> File3 <br/><input type="checkbox" name="file4" /> File4 <br/><input type="checkbox" name="file5" /> File5 <br/><input type="submit" name="mysubmit" value="http://stackoverflow.com/questions/2019964/Download!"> </form> \[/code\]I cant then GET the ticked value:\[code\]<?php echo $_GET["file1"]; ?>\[/code\]Gives the result: \[code\]on\[/code\]However want I want to be able to do is select those options, and each option relates to a PHP file, on Submit each file is combiled into a ZIPAny help appreciated.