RE: [PHP] RE: Events Listings

2001-06-28 Thread Rick Proctor
Hi Everyone, Thanks to the suggestions from everyone I got it working.. Thanks And Check it out @ http://www.alanis-morissette.com/am69/ (It's the TV Guide :-) Rick -Original Message- From: Rick Proctor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 2:04 PM To: [EMAIL

RE: [PHP] RE: Events Listings

2001-06-27 Thread Jason Lustig
If you don't have access to a database, why not put all the data in arrays and then use the array sorting functions? --Jason -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

RE: [PHP] RE: Events Listings

2001-06-27 Thread Peter Houchin - SunRentals Australia
Rick, just an idea wouldn't the use of a database make this alot easier for you ?? then you can just sort your db results by date -Original Message- From: Rick Proctor [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 27, 2001 4:04 AM To: [EMAIL PROTECTED] Subject: [PHP] RE:

Re: [PHP] RE: Events Listings

2001-06-27 Thread Richard Lynch
A.) Do it for me :-) Okay, but you have to go listen to http://ellenrosner.com/ Not as whiny as Alanis, but you might like it :-) ?php # Create an array to hold all the shows: $shows = array(); if ($max_days == ){ $max_days = 365; } $current_day = date( z); echo table border=\0\

RE: [PHP] RE: Events Listings

2001-06-27 Thread scott [gts]
if you dont know PHP that well, you should implement it in a language that you know, then work from that and translate it into PHP. i used to do that with perl/PHP when i was first learning PHP... sometimes, things are more obvious when expressed in a language that you're more familiar with.