Month: October 2008

  • HTML tag label is useful for Radio buttons

    To click on a Radio button is very boring things to me. A radio button is maximum 15 x 15 pixels. So need extra care to click on Radio buttons. When I work with Radio buttons in my web applications, I use HTML tag – ‘Label‘. For example, I have a Radio button like this-…

  • HTML form :: difference between disabled and readonly element

    by

    in

    I was working with HTML forms. In the forms I used readonly and disabled input elements. What is the deference between these two attributes of input element? Say for I have an input element in HTML form. If we set the attribute readonly=”readonly” then the input element is not editable. This attribute allows the user…

  • Talking with PHP

    by

    in

    I need the current time then I call the php function – time() and get the current Unix timestamp. Then function time() returns the second measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT). Say for, in my website users can register for free for one year. I need…