Loading...

More materials by author - Page 3

in JavaScript
Learning JavaScript Basics - Functions

Functions can play an important role in your JavaScript programs. Functions are a set of statements that are put together for a single purpose. You create a function for blocks of code you might need to re-use throughout your program. Using functions make your program modular and flexible...

read more
in JavaScript
Learning JavaScript Basics - Events

First, events are bits of code that link an action by a user, to an action performed by the computer. The action can be a mouse action or key press on the keyboard, or even loading / unloading a webpage...

read more
in PHP
Introduction to SQL. Basic Tips

More and more people are getting into web designing, yet many are put off by SQL for reason which I don't understand. I assure you it is very easy, in this tutorial I'll try to introduce you to the extreme basics of the structured query language.

read more
in HTML Tutorials
Site Design

Most sites are done with tables in html. Most newbies (and vets) make the interface and then modify that interface per page, making many html files with mostly identical code. This has many obvious problems, like if you want to update a link, you have to go threw every page and modify it...

read more
in PHP
Arrays, Multi-Dimensional Arrays

When i first started learning PHP arrays confused me. I learned Perl first; arrays and variables in Perl are represented with different symbols. Not so in PHP, an array looks exactly the same as a variable, it starts with the dollar ($) sign. $array = array('cat', 'dog', 'fish', 'rabbit')...

read more
in PHP
Conditional Statements

We can perform actions in PHP based on whether or not a conditional statement is true. Let's take a look at an example. if(2 > 1) { echo 'two has a greater value than one.'; } Look at it logically: "If two is greater than one". The > operator means "greater than". The conditional ...

read more
in PHP
Control Structures

For those of you who know Perl, you will see that PHP has borrowed alot from Perl. Infact the first PHP interpreter was written using Perl, the syntax is very similar in alot of ways. Foreach The foreach function is for use with arrays. It allows you to go through each item in an array. $fr...

read more

Copyright © All Rights Reserved