I have very limited Perl scripting experience, and I have a question hopefully someone can help me with. I need to write a CGI that receives values from an HTML form text field named "values" that will sort a given Array without using any inbuilt sort function.
The html file asks for input array elements (separated by commas) and your CGI script gives sorted array as output.
Input : 5,3,8,2,7,4
Output : 2,3,4,5,7,8
I have been unable to successfully do this so far. Any help would be greatly appreciated.
--ian <== Some people say they are afraid of heights. With me its table widths. ==>
The html file asks for input array elements (separated by commas) and your CGI script gives sorted array as output.
Input : 5,3,8,2,7,4
Output : 2,3,4,5,7,8
I have been unable to successfully do this so far. Any help would be greatly appreciated.
--ian <== Some people say they are afraid of heights. With me its table widths. ==>