Monday, September 28, 2015

What is Syntax in PHP | PHP Syntax Overview | phpeasylearning.tk


PHP Tags:

A basic PHP syntax which start with <?php and end with ?>. This is universal php tags used for proper and correct interpretation.
<?php………?>
 
A .php file basically contains HTML tags and some php scripts to create a simple web page.
 

Short-open Tags:

This tag allows you to use the short style opening tag for php code block, to use this tag you have to enable or on it in your php.ini
 <?………?>
 

read more about other tags..

 

Understand the PHP Variables Types, PHP Tutorials for Beginners Easy learning | phpeasylearning.tk


Storing information or Assigning a value in PHP program is done by using Variables.
In PHP all variables are declare with leading dollar sign ($)

<?php
$apple="red";
?>

PHP Supports total of Eight Data Types:
See All Types

 

Strings in PHP | PHP Tutorials



The PHP Strings can be considered as important part of PHP. The string is series of characters which can be used in function. To use string first you have to specify it.

In PHP Strings is simply line of characters in single or double quotes like “Hello World!” or ‘Hello World!’ you can write any text in these quotes.

$my_string="I love PHP!";// Double Quotes
$my_string='Hello World!';// Single Quotes

Read More..

Thursday, September 24, 2015

Understand the user defined Function in php | PHP Functions | phpeasylearning.tk





















A function is series of code that take inputs or as parameter and does some processing and returns the outputs..
User defined Function in PHP:
 PHP Allow you to create your own function.
A User defined function must be declare with name ‘function’
 <?php
 function userfunction(){
             echo"User Defined Function";
}
             userfunction();
?>

read more..

 

Tuesday, September 22, 2015

Learn how to install php, PHP Installation | PHP Tutorial for Beginners | phpeasylearning.tk

PHP Installation






















How to install php in your system?
To start developing web based application using PHP you need to install main three components in your computer system Such as: continue reading..