October 24, 2015 9:44 am
Published by Gerard Millares
We have almost covered all the flow control statements and loop structures as part of this blog series on PHP Programming. In this last blog on loops before we move on to functions parameters and formatting numbers, we will discuss...
Read More
October 22, 2015 8:56 am
Published by Gerard Millares
Taking a break from the concepts of array and topics related to that, in this blog post, we are going to have a look back at the loop statements that we discussed earlier in this series of blogs. We have...
Read More
October 20, 2015 6:42 am
Published by Gerard Millares
Remember in the last blog post we talked about arrays and how arrays are initialized in PHP? This blog post continues on the same lane and describes ‘Multi-dimensional array’, a topic that we did not cover in the last part....
Read More
October 19, 2015 5:37 pm
Published by Gerard Millares
Even though I believe that the best way to learn something new is by diving deep into it, getting your hands dirty, making errors and finding solutions; if you are studying on your own, we all need help – especially...
Read More
October 18, 2015 6:11 am
Published by Gerard Millares
We have talked about PHP variables in one of our previous blog posts and surely by this time you might have realized the importance of variables in PHP. In fact, being the storing blocks of values in a code, variables...
Read More
October 16, 2015 4:53 am
Published by Gerard Millares
Taking our discussion on the flow control statements to the next level, in this blog post on PHP Programming, we are going to discuss how switch statements are executed in PHP and how useful are they in the websites that...
Read More
April 3, 2015 3:35 pm
Published by Mark Trego
Flow control statements are basically loops aimed at performing a particular set of operation for a period. Writing condition for let’s say 100 integers knowing that the operation to be performed on each one of them is the same is...
Read More
April 3, 2015 3:32 pm
Published by Mark Trego
In simple words a variable is anything that can store data or values. In real world; your cupboard, a jar, a piggy bank, are all different types of variables. However; in the world of computers and programming languages, variables must...
Read More
April 3, 2015 3:29 pm
Published by Mark Trego
While working with PHP and displaying content on the webpage, we will come across situations where a different operation must be performed for different cases. For instance, certain social networking websites do not allow users below the age of 13....
Read More
April 3, 2015 3:26 pm
Published by Mark Trego
A function is a block of code that can be used or called from anywhere in the PHP script once it has been declared in it. The major use of function is to make the script smaller, easier to understand...
Read More