So what is the internet anyway?

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

Creating your first web page

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

Lists and Bullets in HTML

 
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

Inserting images in HTML

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

HTML Links

<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

Tables in HTML - Part Two

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

Tables in HTML - Part One

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

HTML Forms

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

PHP Error Handling - Video Tutorial

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