Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do i add this to my hompage?


Totally Lost

Recommended Posts

How do i add this code to my index page?...where do i input it?.... >_<

 

My 'images' are in: catalog/images

 

 

<?php

/**
* Change the name of the image folder
*
* Images must be named Monday.gif, Tuesday.gif etc
*/

// Change to the location of the folder containing the images
$image_folder = "images/days";

// You do not need to edit below this line

$today = date('l');

if (file_exists($image_folder."/".$today.".gif")) {
 echo "<img src=\"$image_folder/".$today.".gif\">";
}
else {
 echo "No image was found for $today";
}

?>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...