generating a new web page

2002-10-16 Thread Shane Laffin
Hello All, This is my first web perl program. I want the user to select an option from a drop down menu, then click submit. The program should then go to a new web page to display the results. The below code displays all the info on the one page, how do I move to new web pages. I want to build

Compare dates

2002-08-14 Thread Shane Laffin
Hello List, How do I compare two dates in the format: Thu Aug 15 2002 15:12:02 to return if one date is higher than the other. Does anyone have any ideas on suitable modules, most the date modules I have looked at dont deal with this date format. Any help or po

Re: Split question

2001-08-13 Thread Shane Laffin
Scott, The problem is that | is a pattern metacharacter, and still needs to be escaped. try: my @arr = split(/\Q$CharSep/, $_); # I have a delimited text file with a vertical bar (|) as the column delimiter. When I execute the following statement