Introduction to SQL
Type : PHP Tutorials
Level : Beginner
Added : Aug 29, 2005
Site Design Made Simple
Type : PHP Tutorials
Level : Experienced
Added : Aug 29, 2005
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')...
Type : PHP Tutorials
Level : Beginner
Added : Aug 29, 2005
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 ...
Type : PHP Tutorials
Level : Beginner
Added : Aug 29, 2005
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...
Type : PHP Tutorials
Level : Beginner
Added : Aug 29, 2005
Pagination with PHP
Type : PHP Tutorials
Level : Beginner
Added : Aug 29, 2005
Introduction to SQL
Type : PHP Tutorials
Level : Beginner
Added : Aug 29, 2005
How to make a simple form mailer with PHP
As you may be well aware, displaying your e-mail address on your website can lead to e-mail harvesters picking up your address and adding it to hundreds or even thousands of lists used by spammers...
Type : PHP Tutorials
Level : Beginner
Added : Aug 12, 2005
Acquiring PHP MySQL
PHP and MySQL are already packaged in Linux and Mac OS X OSs. However, most PHP developer are actually using Windows when developing PHP applications. This is also true to myself. I have Mandrake Linux 10 but I'll just use it for testing purposes of my finished scripts...
Type : PHP Tutorials
Level : Beginner
Added : Jul 05, 2005
Creating Dynamic Website Content with PHP - MySQL
Editor's Pick in Web Programming, June 2005
Did you know that constantly generating and posting fresh website content is a good way to get return visits from your customers? Here's how it's done using PHP.
Type : PHP Tutorials
Level : Beginner
Added : Jun 23, 2005

