Re: [PHP] need help breaking out of loop.

2003-06-26 Thread David Otton
On Thu, 26 Jun 2003 13:00:45 +0200, you wrote: > What am I missing? At first glance >while ($i <= $number_of_days) > { > $issue_date = strftime("%Y-%m-%d", $current_date); > $issue_month = date("m", $current_date); > $issue_day = date("d", $current

RE: [PHP] need help breaking out of loop.

2003-06-26 Thread Naintara Jain
Are you incrementing number_of_days anywhere within the loop? It looks like you have an infinite loop running. If you want to be able to move to the next date, increment you date variable. -Naintara -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] t]On Behalf Of ander

RE: [PHP] need help breaking out of loop.[Scanned]

2003-06-26 Thread Michael Egan
Anders, Are you missing a '|' in the if condition? Michael Egan -Original Message- From: anders thoresson [mailto:[EMAIL PROTECTED] Sent: 26 June 2003 12:01 To: [EMAIL PROTECTED] Subject: [PHP] need help breaking out of loop.[Scanned] Hi, I'm working of a PHP-MySQL-planning system f