> I want to print a weekly transaction statement using perl. > It should ask the user to enter the start date and the end date > e.g:$start_date = 30/08/01 (dd/mm/yy) > > $end_date = 05/09/01 > This information will filter through a transactions file to print out the > statement within the given date. > My program currently has this code: > > if (($day == 17) || ($day == 18) || ($day == 19) || ($day == 20) > ||($day > == 21) || ($day == 22) || ($day == 23)){ > ----------------------- > ------------------------------ > } > > Is it possible to use the start and end dates to filter through the data > e.g, with the given dates above, the program should print statements with > date 30/08, 31/08, 01/09, 02/09, ......... > Thanks. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]