Posted by Shek on November 30, 2011 under PHP |
Read more of this article »
Posted by Shek on August 11, 2011 under HTML, JavaScript |
In this post, I am going to show how to use the same JavaScript function for different HTML forms, this could help in situations when multiple forms need to preform the same operation but with different inputs.
Read more of this article »
Posted by Shek on February 12, 2011 under HTML, JavaScript |
Editor’s note: In some cases, when we select one radio button, we want disable the user to have a fill in some information related which is no related to that other radio button, and so javascript helps us to do this job.
Read more of this article »
Posted by Shek on May 26, 2008 under PHP |
Editor’s note: There is a function in PHP to check the IP address of a host. It is called “gethostbyname()“. We could use it to check the IP address of a website. Steps are very simple: Put the website address into the function, for example: gethostbyname(www.phpsuperblog.com); and print the result out and then the IP address of the website would appear.
Read more of this article »
Posted by Shek on May 19, 2008 under PHP |
In my past post on explaining how to set the default values of the text field. Now to use the same concept, we could get the records from the MySQL database and place it into the text field as default text. Here I have created an example to show you how to do so. Read more of this article »
Tags: Database, Display, HTML, HTML form, HTML form element, Loop, MySQL, PHP Function, Query, Text-field, While-loop
Posted by Shek on under HTML |
In some websites, you might discover that some text fields already has text written it when the page loads. Text such as “enter your search here” or “input here”. You might wonder how to do it, is it to do with another programing language such as javascript?? The answer is no, HTML can do the do. Read more of this article »