Posts Tagged ‘text’

What’s the code to get a piece of information on my web site to change about every 4 or 5 seconds?

I would like to place a small piece of information, a picture, some text, and a link on my web site that scrolls through about 10 or so different ones. How can I get this done. Maybe using php. Just a small piece of information maybe in the top right corner of my home page [...]

What’s the code to get a piece of information on my web site to change about every 4 or 5 seconds?

I would like to place a small piece of information, a picture, some text, and a link on my web site that scrolls through about 10 or so different ones. How can I get this done. Maybe in php. Chosen Answer: Not sure exactly what you are asking: you can have scrolling information with a [...]

Tracking a websight back to the person?

I got a text message from this url lostguru@titans.site5.com i want to know how i can figure out who sent it…anyone know? Chosen Answer: Site5.com is a webhosting company. Titans.site5.com is an email server domain name. Lostguru is the persons email address. If you want you can send them an email to the address you [...]

How to make an alert box (javascript) only pop up the first 5 times someone visits a site?

I have an alert box: How can I make it so that this only pops up the first 5 times someone comes to my site? Chosen Answer: A simple way, using a cookie: if cookie not found: { set cookie to value 5, dispaly alert } else { if (cookievalue = 0) return else { [...]