I am working on trying to create a script that will first determine what the current day is. After the script does that, I have folders located for each day located at http://animationarchive.net/Dates/By Day/. After the certain date is determined I want to pull the information from the current date and display the information from that particular page and show the results on the main page.
For example, if todays day was December 15, the script would determine the date was December 15, then pull the information that is contained in the php file located at http://animationarchive.net/Dates/By Day/December 15/description.php and show the information shown on that page.
Here is what I have so far but can't figure out how to do the rest
<?php
$today = date("F d");
print "http://animationarchive.net/Dates/By Day/" ;
print "$today" ;
print "/description.php" ;
?>
Using the above example of todays day is December 15, this coding gives me the results of http://animationarchive.net/Dates/By Day/December 15/description.php
Now, all I need to do is figure out how to pull the information from that page using the URL that the script determined above