Variables in PHP | PHP Variables
Variables in PHP : Variables in PHP are represented by a dollar sign followed by the name of the variable. The variable name is case sensitive. ($a and $A are…
First PHP Script | First PHP Program
Some important things to know before starting first PHP script : A PHP file contains tags of HTML and some code of PHP script. A PHP script always starts with…
What is phpinfo() ? | phpinfo()
phpinfo() function provides large amount of information regarding the current state of PHP. This function gives information regarding version of PHP, PHP environment, OS version, compilation and extensions options, local…
PHP and MySQL Combination | PHP & MySQL
PHP and MySQL combination : In earlier post, we saw how set up environment for PHP. In that we saw that we used WAMP server WAMP : Windows ,…
Setting Up the Environment for PHP | PHP Tutorial
Before starting PHP, we have to set environment for it. PHP is available for almost all platform. To set up the environment for PHP you need three components must be…
Why You Should Go For PHP | PHP Tutorials
Here we continue with our PHP tutorial , in last article PHP Introduction we discussed introduction about PHP including its history , evolution and other critiques. Here we are not…
Introduction To PHP
PHP stands for "Hypertext Preprocessor". Its original name was "Personal Home Page". It was developed by Rasmus Lerdorf. He is a software engineer, and the team member of Apache…
Difference between Server side scripting and Client side scripting | Server side scripting vs. Client side scripting
We would define a script as a set of instructions. For Web pages they are instructions either to the Web server(server-side scripting) or to the Web Browser (client-side scripting). Let’s…