Jump to content

[SOLVED] Generate welcome message.


cordoprod

Recommended Posts

Hello. I want to display a welcome message when a user logs in.

 

Here is my code:

function welcome($timestamp) {
  $time = time();
    if($timestamp-$time > 0 and $timestamp-$time < 86400) {
    return "Nice too see you again so soon.";
}
elseif($timestamp-$time > 86400 and $timestamp-$time < 604800) {
    return "Nice too see you, it's been a short while.";
} 
elseif($timestamp-$time > 604800 and $timestamp-$time < 2629743.83) {
    return "Nice too see you again. It's been a long time.";
}
elseif($timestamp-$time > 2629743.83 and $timestamp-$time < 31556926) {
    return "I am glad too see you active. Long time no see.......";
}
else {
    return "Wow, you're online. It's been over a year!";
}
}

 

I have a timestamp (generated from time();) and the rest is pretty obvious i guess.

 

The cases are a day, a week, a month, a year, and so on. :-)

Link to comment
https://forums.phpfreaks.com/topic/132022-solved-generate-welcome-message/
Share on other sites

Archived

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

×
×
  • 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.