Tag Archive: Online Learning
November 8, 2015 7:49 am
Published by Gerard MillaresWe have already discussed a few concepts of Object Oriented Programming that gives it an edge over the procedural languages. One of the most commonly used aspects of Object Oriented Programming is the inheritance of parent class by the child...
Read More
November 6, 2015 7:14 am
Published by Gerard MillaresConstructor is a concept that Object Oriented Programming has introduced in the world of computer programs; and the use of constructors often minimizes the complexity and the length of a particular code. Imagine giving value of the same variable again...
Read More
November 4, 2015 6:54 am
Published by Gerard MillaresObject Oriented Programming involves classes and objects and uses these two concepts to execute programs instead of relying solely on actions and logics. Object Oriented Programming or OOP; makes the job of a programmer easier and brings synchronization to various...
Read More
November 2, 2015 4:00 pm
Published by Gerard MillaresIn our last blog post, we discussed how $_GET can be used to deliver user data from a HTML form to a PHP file. In this blog post, we will discuss about the other method to perform the same operation,...
Read More
October 30, 2015 3:33 pm
Published by Gerard MillaresPHP is most effective and useful when it is used to take the information from the users and then use those details to authenticate a particular user or to get access to a website or any other services provided by...
Read More
October 28, 2015 2:33 pm
Published by Gerard MillaresWe have discussed a lot of basic concepts that are used in PHP in this series of blogs dedicated to help students learn PHP from the scratch. In this blog post, we will be drifting towards an aspect that is...
Read More
October 26, 2015 10:35 am
Published by Gerard MillaresBeginners in PHP or any other programming language, usually shy away from including functions in their codes as they believe that it makes coding difficult.” If I am using the same operation, why can’t I just copy paste the lines...
Read More
October 24, 2015 9:44 am
Published by Gerard MillaresWe 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 MillaresTaking 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 7:09 pm
Published by Gerard MillaresHere we are going to learn about the urllib (stands for url library) in Python. ‘urllib’ is a very important Python internet module, often used in Python networking / Internet Programming. Whenever you have to deal with HTTP protocols(associated with...
Read More