Featured Articles
PhP Classes and Objects Explained
Class: Class is a way to organize the data. For instance , you want to write a program to display the names of parts of a car. What...
PhP Simulation Script Using Conditional Statements.
This script simulates a dog moving to its kennel. It consists of all conditional statements except switch. Initially we set to random positions for the dog and...
Conditional Statements in PhP
1. If, else and ifelse: <? PHP $num = 1; If ($num ==1) /*checks if the name is equal to 1, if not it will go to the...
Variables, Type casting ,Concatination and Constants in PhP
1. Variables: $ sign is used for defining the variables in PHP. eg: $var_1 =12. Here the datatype is automatically assigned. You don't have to...
How To Configure PDO Mysql Driver On Ubuntu
I assume that you have lamp stack installed in your system. And if you have PHP version lower than 5.1, you have to you have to...
MongoDB and Php Beginner Tutorials
Database connection: Connecting mongoDB with php is really simple if your configured php with mongoDB using php driver. Assuming that you have already configured php with mongoDB...