Search:

Deceth's Articles in PHP

  • The FOREACH Loop Love Affair with Mr. Array
    Introducing the FOREACH loop
  • The incredible FOR Loop Multi-Tasker
    Introducing the FOR loop
  • The magic of WHILE Loops
    Introducing the WHILE loop
  • Nested IF/ELSE Conditional Statements
    How to use IF/ELSE statements within other IF/ELSE statements. This is called nesting.
  • If/Else Programming Logic
    So how does the computer make a decision? Basically, you provide a statement and then the system will verify whether that statement is true of false. Depending on the result, a different path of code will be executed. This article will show some examples!
  • Taking Advantage of Arrays
    The next step in our quest to conquer PHP is to explore arrays which are similar to variables. Arrays are used when you would like to create many variables which will be similar. Rather than create hundreds of variables, a single array could be used to store all of the related values...
  • PHP Variable Naming Rules
    The following are the PHP variable naming rules which I have taken from w3schools.
  • Using Concatenation with PHP Variables
    How to use concatenation to use multiple variables in the same line of code in order to create more complex and dynamic strings
  • How to use Variables in PHP
    Variables are very important once you start programming in PHP. Variables are used to represent a value and can store numbers, strings or arrays. The main reason variables are so useful is because they can then be used over and over again as many times as necessary.
  • Echo vs Print - Which Should be Used?
    You will notice as soon as you start programming in PHP that you have two options when it comes to displaying text on the screen: Echo or Print. This article explains the difference between the two and suggest which you should use.
  • How to Comment your PHP Code
    In PHP there are three ways you can comment your code
  • Understanding PHP & the Web Server/Browser Relationship
    The first thing that is important to understand regarding PHP is what is going on behind the scenes!
  • Your First PHP Page
    Example of building a PHP page for beginners!
  • Learning PHP
    If you plan on doing any serious web development, you will inevitably have to use some form of server-side scripting. PHP (Hypertext Preprocessor) is one of the options available. ASP.NET and JSP are two other widely used server-side scripting languages.

Powered by Article Dashboard