Archive for 'Programming'

PHP Lessons 8: Server Constants and HTML Forms

December 10, 2009 by Guest-GS, under PHP Lessons, Programming.

Hello there, it’s been a while, I’ve been very busy with work and some personal project, so i had to delay the PHP courses, but anyway, I’m back and today we’ll have a look at Server Constants.

Take a look at www.geekscribes.net, on the right side, we have a search form, when you type in a search keyword and press Enter, the page loads and it fetch every results according to what you typed. Ever wonder how it works? Don’t go any further, today I will show you bring a boring html form to life.

Before I start, if you missed the array tutorials, then please, go to the link below, and read the post, give it a try.. because you’ll need to understand how arrays work in order to understand this lesson fully.

(more…)

5 Comments

PHP Lessons 7: Functions in PHP

August 17, 2009 by Guest-GS, under PHP Lessons, Programming.

Ok guys and girls, this is lesson 6 and I hope we can at least get to lesson 100! :D

Today we will have a look at functions in PHP. First, what’s a function? It’s simply a sort of container for code. Whenever you call the function, the code inside gets executed. Also, functions can accept parameters, which are values that the function needs to work. If you remember a bit of your maths, “cos x” is a function, and x is the parameter or argument. Usually the result you get by doing the cosine operation is the return value. Just remember those terms for later.

(more…)

7 Comments

PHP Lessons 6: Break and Continue

August 15, 2009 by InF, under PHP Lessons, Programming.

Last time we saw how to work with the different kinds of loops: the While, Do While, For and Foreach loops. Today, we are going to see two keywords, “break” and “continue” that you may use to operate on loops and Switch blocks. You can consider this to be a continuation of the Loops lesson.

(more…)

No Comments

PHP Lessons 5: Loops

August 14, 2009 by Guest-GS, under PHP Lessons, Programming.

Loooooops!

In this lesson, we will have a look at the foreach function in php.

First, what is a loop? I’d say something that repeats or involves a repetition can be considered a loop. In programming, you use a loop to have a bunch of codes run for a number you set. If there were no loops, you’d have to write that piece of code x times if you wanted to run it for x times, which is crazy! Read on to know the solution!

(more…)

No Comments

PHP Lessons Part 4: Arrays

August 11, 2009 by Guest-GS, under PHP Lessons, Programming.

Ok, even some developers who already understand php a little are always confused about arrays and don’t really know how to use them. In this lessons, we will try to cover the basic uses of Arrays in PHP.

When you declare a variable, it can only hold one value. Like the example below:

<?php

$my_variable = "This is some text";

?>

As you can see, it can only store “This is some text”, or a single value. But what if you have to store multiple values which have some relationship between them? Let’s take an example from the previous lesson, remember our guy named John? We declared his age. Let’s say we want to add his name, location etc. We can do it like this:

$persons_age = ‘16′;
$persons_name = ‘John’;
$persons_location = ‘California’;

But with the use of arrays, you can store all of that information in one variable. Like below:

<?php

$persons = array('John','16','California');

?>

 (more...)

No Comments

PHP Lessons Part 3: Conditional Statements

August 8, 2009 by Guest-GS, under PHP Lessons, Programming.

Today we will have a look at what Conditional Statements are.

Conditional Statements allow you to perform different kinds of actions based on a given condition. It can either return true or false.

A little Non-Programming example to give you an idea of Conditional Statement Below:

Let’s consider a guy named John, is 16 years old and wants to go to a casino. Unfortunately, casinos doesn’t allow Minors.

So basicaly, the condition is:

If John is less than 18 years old, then don’t let him inside the casino, else, let him in.

Now there are two words that are always used in PHP Conditional Statement. They are “IF” and “ELSE”. Before going on, you should know we are using caps here for emphasis. When using these keywords in code, they are lowercase! PHP is case-sensitive. “IF” and “if” are different things for PHP. Use “if” in code.

(more…)

2 Comments

PHP Lessons Part 2: Operators

August 1, 2009 by Guest-GS, under PHP Lessons, Programming.

Welcome to Part 2 of the PHP lessons.

In the previous lesson, we talked about how to get started with PHP, setting up a local environment to develop in PHP. We also talked about Variables and how they can be very useful when developing.

Just to refresh yourself up, the way we write a variable is like so:


$myVariable = "This is some fancy text";
echo $myVariable;
?>

(more…)

2 Comments