Log in

View Full Version : Welcome Message



Shiana
06-29-2006, 08:43 PM
Hi,

I'm looking for an html script that will let me have a personalized greeting when they log on to my website. In order to get to the site, they have already logged on with their user name. So for example, "Welcome username!"

Any help would greatly be appreciated!

Thanks!

:rolleyes:

Twey
06-29-2006, 08:43 PM
Depends where the login info is stored. Oh, and it's not possible in HTML, you need some form of server-side script.

djr33
06-29-2006, 08:52 PM
As Twey says, it all depends on how that username is stored.

Assume that *user* represents the username, whether output by php or something else. So...

<body onLoad="alert('Welcome, *user*');">

And of course you could just put a text message on the page. That will generate an alert popup, using javascript.

Totally up to you, but that is one suggestion.