Sharp Tutorial
Introduction to

Python

Java

C

C++

HTML/CSS

Java Script

PHP

SQL

C Programs

PHP Introduction

  • PHP home
  • PHP introduction
  • How to install and run
  • Syntax and Rule in PHP
  • Data type and operator
  • If else in php
  • Loop in php
  • Array in php
  • Sring in php
  • Function in php
  • Include in php

Working with Forms

  • Get and Post
  • Get Form input into PHP
  • Form Validation

PHP with MySQl

  • Connect PHP & Mysql
  • Insert using PHP Mysql
  • Select using PHP MySql
  • Delete Update using PHP Mysql
  • Login Page Example in PHP

Advanced PHP

  • Session in PHP
  • Cookies in PHP
  • File Handling in PHP
  • File Upload/Download PH

Object Oriented PHP

  • Class Obejct in PHP
  • Constructor in PHP
  • Destructor in PHP
  • Inheritance in PHP

PHP Introduction

PHP is widely used scripting language that can run on different type of operating system and environment. PHP takes almost syntax from C language so easily who have basic knowledge of programming can learn php.

PHP supports with all databases like Mysql , sql etc and compatible with all  servers. Popular framework like wordpress uses the strength of PHP and worlds one of the most popular language like Facebook uses PHP.

PHP new version is 7 which is faster as compared to the previous versions. In php echo is the command to print on the screen. variable is declared with $ in php.

Program to print the area based on length and breadth

 <html>
<body bgcolor="cyan">
<center>
HTML Content
<br>
<?php
$length=20;
$breadth=10;
$area=$length*$breadth;
echo"Area= ".$area;
?>
<center>
</body>
</html>

Output of the above program is as following.

Enquiry about Course

Ask your Question

Click Here

Sharp (2) Tutorials

Video/ C Introduction

Watch video in full size

Video tutorial

Follow by Email
Facebook
Facebook
fb-share-icon
YouTube
Copyright © Sharp Tutorial
Build with WordPress
Wordpress Social Share Plugin powered by Ultimatelysocial
Sharp Tutorial