Articles by haroon

  • Functions In PHP

    php Author: haroonTags: Comments: 2

    Functions In PHP Functions are considered to be a complicated topic in programming and many newbies think it will cost them a hand and a leg to master them. But mark my words and mark them well - functions are your friends and they are one of the easiest and most effective things in programming to learn.

  • Detailed Guide On Arrays In PHP

    Author: haroonTags: Comments: 14

    Detailed Guide On Arrays In PHP Here is yet another article of Fast PHP Articles Series. Today we are going to discuss ARRAYS. We will learn its syntax, its different types, the different built-in array functions that help to perform different tasks related to arrays quickly and different practical examples explaining the use of arrays in PHP.

  • Loops In PHP

    Author: haroonTags: Comments: 0

    Loops In PHP There are certain conditions in which you need to execute the same block of code again and again. Here we can use Loops to write few lines which will print more output depending on our loops condition.

  • Decision Making Using PHP Switch Statement

    Author: haroonTags: , Comments: 0

    Decision Making Using PHP Switch Statement Today I am going to discuss Switch Statement. The basic concept of Switch is similar to the IF-ELSE statement; it helps you to write decision making code just like IF-ELSE but it is a little more organized, elegant and handy when dealing with complex logics as compare to IF-ELSE.

  • Decision Making Using IF-ELSE In PHP

    Author: haroonTags: Comments: 4

    Decision Making Using IF-ELSE In PHP Today we are going to study the tools that will help you to write Decision Making Codes in php. For example, when you sign in to orkut.com you see a message ‘hello username’ on the upper right of every page. Similarly when you login to gmail if you provide wrong username or password you see an error message and if you submit accurate information you are taken to the inbox. If you think deep on these events, this is what we call ‘decision making code’. your write intelligent code that can make decision on user’s input and can act accordingly to the input to produce required output.

  • Operators In PHP

    Author: haroonTags: Comments: 5

    Operators In PHP This article is the second of a series of PHP guides that aim at teaching you the basics of PHP programming.

  • PHP Programming Basics

    Author: haroonTags: Comments: 12

    PHP Programming Basics This article is the first of a series of PHP guides that aim at teaching you the basics of PHP programming.