Category Archives: Tutorials

Beginning Actionscript 3

Starting out with any programming language is difficult to grasp at first. What you will find however is that after learning the concepts behind one language, it gets easier when you move to another language (Javascript, PHP…). The following are … Continue reading

Posted in Tutorials | 1 Comment

Beginning PHP

The syntax of PHP is very similar to that of Javascript. The difference is use, we use PHP for any backend functionality for our website: sending email, adding customers to a database, logging in to our website… You want to … Continue reading

Posted in Tutorials | Tagged , , , , , , | 1 Comment

Installing PHP on our computer using XAMPP

What is php? PHP is a scripting language that is generally used to combine front end technologies like HTML and CSS to backend technologies such as a MySQL database. PHP can be used to send email from a form, generate … Continue reading

Posted in Tutorials | Tagged , , , , , , | Leave a comment

Javascript Form Checking

A very popular use for JavaScript is its ability to check input data from forms before we send it to the server to be processed (added to a database, email, etc.) What we will be doing is creating a simple … Continue reading

Posted in Tutorials | Tagged , , , , , , , , | Leave a comment

Javascript Tab Content Menu

To start this example, download the following html document: http://jeffkilroy.com/myfiles/class/javascript_3_start.html (You can right click the link and go to File>Save As) You can see in this file we have our HTML and CSS already completed, in our HTML we list … Continue reading

Posted in Tutorials | Tagged , , , , , | 1 Comment

CSS and Javascript (DHTML)

One of the nice uses of javascript is that it can change some of the styles on our page. In this example we are going to use certain events such as the page loading or clicking a button modify some … Continue reading

Posted in Tutorials | Tagged , , , , , | Leave a comment

Beginning Javascript

Up next, Javascript! We use Javascript for client side programming. It is a great way to make our webpages more interactive by dynamicly changing content and styles, as well as verifying input data such as forms. We can even combine … Continue reading

Posted in Tutorials | Tagged , , , , , | Leave a comment

HTML / CSS Forms

HTML/CSS forms can be a bit scary at first. Let’s take a look at a simple HTML form and break it down, tag by tag: <div class="blueform"> <form> <fieldset> <legend>Email Us</legend> <div> <label>Your Name</label> <input type="text" name="your_name" value="" /> </div> … Continue reading

Posted in Tutorials | Leave a comment

Generating and Linking to Multiple Pages

So far we’ve been able to setup our layout and create a page, but what if we need more than one page? All of these links on our page can’t just link to nothing right? This is pretty simple, but … Continue reading

Posted in Tutorials | Leave a comment

Using Dreamweaver for HTML and CSS

So up to this point we have been working in Dreamweaver’s code view to manage our HTML and CSS even though there are a few things Dreamweaver could have done to make it easier for us. The reason we went … Continue reading

Posted in Tutorials | Leave a comment