PHP Customizable Date Script with daily messages! Description: Shows the time and date where ever you insert the code into your webpage. Features: Control font type, color, size, bold, italics, status bar on/off, and the Background Color of the text. Display a different message for every day of the week! Example: System Requirments: PHP3 or higher. Instructions: Copy and paste the following code into your webpage where you like it to appear. <?php # script written by Jason J. Russo webmaster@thescriptcenter.com # more free scripts: http://thescriptcenter.com ############################################################# # Month Format: # 0 2 digits = (01) # 1 1 digit = (1) # 2 longtext = January # 3 shorttext= Jan $monthf = "2"; # Day of month format # 0 2 digits = (01) # 1 without leading zero = (1) $dayf = "0"; # Day of week Format: # 0 longtext = Monday # 1 3 letter = Mon $daywf = "0"; # Year Format: # 0 4 digits = 2002 # 1 2 digits = 02 $yearf = "0"; # Separated by: Example: -, /, _, 1-2-2003 or 1/2/2003 $separator = "-"; # Show time? 0 = no 1= yes $showtime = "1"; # Edit the following variables below. # font face example: arial,verdana,tahoma $fface="verdana"; # font size $fsize="1"; # font color $fcolor="#000080"; # bold text. Set to 1 if true 0 if false; $b = "0"; # italics text. Set to 1 if true 0 if false; $i = "0"; # Do you want the date to be seen in the window status bar? # Set to 1 if true 0 if false; $statusbaron = "1"; # Cascading Style Sheet Effects. Set to 1 if true 0 if false; $css = "0"; # If the above is set to 1 insert the background color here. $bgcolor = "#fffddd"; # Place a message here if you want to display a message on a certain day $daymess = array(); # Sunday $daymess[0]="visit thescriptcenter.com"; # Monday $daymess[1]="Case of the Mondays."; # Tuesday $daymess[2]="Tuesday's gone."; # Wednesday $daymess[3]="Free Scripts at: thescriptcenter.com"; # Thursday $daymess[4]="visit thescriptcenter"; # Friday $daymess[5]="TGIF!"; # Saturday $daymess[6]="Working on a Saturday?"; # Do Not Edit Below This Line Unless you know what you're doing. Or even if you don't know what #you're doing but you feel like experimenting. ############################################################# $whatday = date("w"); if($monthf == "0") { $month = date("d"); } elseif($monthf == "1") { $month = date("n"); } elseif($monthf == "2") { $month = date("F"); } else { $month = date("M"); } if($dayf == "0") { $day = date("d"); } else { $day = date("j"); } if($yearf == "0") { $year = date("Y"); } else { $year = date("y"); } if($daywf == "0") { $dayw = date("l"); } else { $dayw = date("D"); } $ampm = date("a"); $results = "$month$separator$day$separator$year"; $stbar = $results; if($b==1) { $bold = ""; $endbold = ""; } if($i==1) { $italics = ""; $enditalics=""; } if($css==1) { $css = " style='background-color:$bgcolor'"; } else { $css = ""; } $results = "$bold $italics $results"; if($daymess[$whatday]){ $results .= "$daymess[$whatday]"; } $results .= " $endbold $enditalics"; if($statusbaron == 1) { $results .= " "; } if($HTTP_GET_VARS["js"]) { $results = str_replace("\n","",$results); $results = str_replace("'", "'",$results); echo "document.write('" . "$results$endbold$enditalics" . "');"; } else { echo "$results$endbold$enditalics"; } ?>