Recent content by MrTwidget

  1. M

    Why do web sites reference clicked links? (ie: index.php?ref=logo)?

    Many sites do this, but I'm reminded of Facebook. Whenever you click any link it references that link in the address bar. Do they collect this data so they know who's clicking what and when? I'm curious because I'd like to implement such a feature in my web site. Thanks!
  2. M

    Permanent HTML Editor?

    HTML files are just text files with a fancy name. Therefore, you can use any text editor around to edit them, even notepad. I've been developing web pages for a long time, and I use only Notepad++ for my work. It colors the syntax correctly for almost ANY language. It's free to download from the...
  3. M

    Permanent HTML Editor?

    HTML files are just text files with a fancy name. Therefore, you can use any text editor around to edit them, even notepad. I've been developing web pages for a long time, and I use only Notepad++ for my work. It colors the syntax correctly for almost ANY language. It's free to download from the...
  4. M

    Permanent HTML Editor?

    HTML files are just text files with a fancy name. Therefore, you can use any text editor around to edit them, even notepad. I've been developing web pages for a long time, and I use only Notepad++ for my work. It colors the syntax correctly for almost ANY language. It's free to download from the...
  5. M

    What is all that extra text after some html css/src attributes? (i.e. image.gif?214532)?

    I see many web sites (mainly corporate ones) that have certain values inserted into their page source code. Normally looks something like this: ../images/subnav-mostpopular.gif?1244747771 -or- /css/mycss.css?5489 I assume this is just some sort of scripting language doing this? I have been...
  6. M

    Determine Day/Night Styles in PHP?

    I have two styles for a website I'm designing that can be changed on the fly using javascript. Basically I would like to determine if the time of day is between 6am and 9pm. If it is, then the daytime skin will show, otherwise the night time skin appears. Something along these lines in the head...
  7. M

    HTML code for scrolling text?

    <html> <style type="text/css"> #marqueecontainer { position: relative; width: 200px; /*marquee width */ height: 200px; /*marquee height */ background-color: white; overflow: hidden; border: 3px solid black; padding: 2px; padding-left: 4px; } </style> <script type="text/javascript"> var...
Back
Top