Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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