Quantcast
Channel: PHP Freaks: PHP Help
Viewing all articles
Browse latest Browse all 13200

new message every day

$
0
0

I have had a different message appearing evry day based on the name of the day. I now want a message based on the date up to 31. I have tried messing to no no avail. Help will be appreciated

 

 

$day_post = "includes/days";
 
$today = date('l');
if (file_exists($day_post."/".$today.".php"))
    {   
    /**echo "$day_post/".$today.".php"; **/
include("$day_post/".$today.".php");
    } else {   
    echo "No thoughts came into my head $today";
}
 


Viewing all articles
Browse latest Browse all 13200

Trending Articles