Loading...

Sorry, no results found. Please enter different search options and try again, or browse these related materials:

3D Spikes
in 3D Effects
3D Spikes

Begin with a new file, 300x300, and with a transparent background. Now set your foreground color to black, then take the Paint Bucket Tool and fill your canvas with your foreground color...

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