RSS

Archive | コーディング RSS feed for this section

List of PHP keywords

23. July 2008

0 Comments

List of PHP keywords

Continue reading...

GET方式とPOST方式

21. July 2008

0 Comments

When you wanna pass some value from one page to other page, you may wanna use GET or POST method.

Continue reading...

関数

19. July 2008

0 Comments

* Define a function: function fuctionName($argument1, $argument2,......){ Statements; }

Continue reading...

Control structure

19. July 2008

0 Comments

There are 6 kinds of control structure in PHP:

Continue reading...

変数

17. July 2008

0 Comments

# Naming Rule: * A variable must start with $; //In other words, variable in PHP is Perl-like * After $, the first character must be a letter(a-z, A-Z) or an underscore(_); //It can't be a number

Continue reading...