Jump to content

dad47466

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

dad47466's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Dumb mistakes happen all the time. It's working.  Thanks.
  2. I have a php file for each day of the year - 0101.php for Jan 1; 0102.php for Jan 2; 0103.php for Jan 3, etc. I need to bring up January 1st's page on January 1st within a predesigned template. The site is http://www.springfieldohio.net - and the features in question are"Birthdays" and "Almanac".  Right now, I'm using Java Script redirects - one to select the month, then a second to select the day.  The results open in a new window.  I am trying to get the results to open in the content section of the page, but the js redirects are not doing it. I have tried I-frames, but IE inserts scrollbars within the template, and it looks stupid. I found this: <?php $date = date("md"); $handle=opendir('events'); while (($file = readdir($handle))!==false) {       if ($file >= $date) {         include("events/$file");         } } closedir($handle); ?> on webdesigns1.com - it places all 366 files within the template. And changing the argument to if ($file = $date) produces nothing.  I also tried about a dozen different adjustments but with no positive results.
  3. I have been unsuccessful in coming up with a script that will display a different page each day of the year. I could use any assistance offered.
  4. I operate a rather large site that I had to organize logically so I could find what I need. The site has numerous folders and sub-folders up to 4 levels deep. And I am updating this site several times each day, so ease of operation is essential. www.domain.com/page1.php www.domain.com/folder1/page2.php www.domain.com/folder1/folder2/page3.php www.domain.com/folder1/folder2/folder3/page4.php My problem is the navigation bar - I had been using the full URL, but that is affecting my visitor count. (I sell advertising on this site, so an accurate visitor count is essential). I have not been able to construct the navigation bar so that it will work the same for page 1 as it does for page 4 without directing visitors to the full URL. Is there something simple I'm overlooking?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.