July 14th, 2007
It all started with computers linking together to share their resources. This is called Networking. When the computers that are linked are close together this is called a LAN (Local Area Network). When the network covers a larger area, such as a whole city, this is called a WAN (Wide Area Network). The Internet is […]
Filed under: HTML
July 13th, 2007
A browser is the software that interprets and displays HTML. At first there was no governing body to ensure standards…so the W3C, World Wide Web Consortium, now maintains official HTML specifications.
The basic HTML template looks like this:
<html>
<head>
<!–My Comments–>
<title>Title at top left of browser window</title>
</head>
<body>
<p>Content here is displayed in browser</p>
</body>
</html>
Ok, now it’s time […]
Filed under: HTML
July 9th, 2007
It is pretty easy to make the bullets and lists that are seen in webpages.There are three lists supported by HTML: ordered, unordered, and definition. There is the <ol></ol> ordered list. Guess what? It’s ordered numerically. Check out the syntax for an HTML ordered list:
<ol type=”list type“>
<li>HTML
<li>JavaScript
<li>PHP
</ol>
The “list type” refers to the type of bullet […]
Filed under: HTML
July 8th, 2007
First of all, you should only use .jpg or .gif to display images. .png only has limited support at this time, so just use .jpg or .gif. If you have an image in another format, convert it to a .jpg or .gif first.
Images can be displayed in two ways: inline or external. An inline image […]
Filed under: HTML
July 7th, 2007
<a> & </a> The anchor tag is used to create links. There are a number of attributes for the anchor tag. (An attribute further defines the properties of the HTML tag - kind of like an adjective).
One such attribute is the ‘href’ attribute. The ‘href’ attribute is used to create a link to another document, […]
Filed under: HTML
July 5th, 2007
To merge several cells into one, you need to create what is called a spanning cell, which just happens to be a cell that spans more than one row or column in a table. To span a column or td, we use colspan. To span more than one row or tr, we use rowspan. The […]
Filed under: HTML
July 5th, 2007
Tables in HTML allow a user to present information in a more organized manner. Tables can be a complicated process because a lot of information is required to define the layout and appearance of a table. The table structure must be specified, rows and columns. The table starts with a <table> tag - followed by […]
Filed under: HTML
July 4th, 2007
First off, this section will only tell you how to make a form, not how to do anything with it. I hope to have php and javascript form processing and validation pages up soon. In the meantime, lets talk about forms in general. Below is a table of commonly used form control elements:
Type:
Code/Description:
Example:
Text
<input type=”text” name=”name” […]
Filed under: HTML
July 1st, 2007
Looking for a good explanation of PHP Error Handling?
This video explains how to set the error handling functions in php.
PHP Error Handling Lecture
Filed under: PHP