Thursday, December 4, 2008

Day One

Hi! to all
today i am starting learning the PHP/My SQL at INNOBUZZ at pitampura Delhi. The Course Name is CPP which stands for Certified PHP programer. Today 4th of dec. is my first calss at Innobuzz centre. Today I am learning basic knowldge about PHP , Appache, and My sql. and some starting coding in PHP is also learnt by me.so what is happing in class i am displayed here


PHP

Web Server

It is the computer which hosts the websites.

It works on port number 80.

Softwares for the web server:

IIS
Apache

XAMPP: X any operating system.
A Apache
M MY Sql
P PHP
P Perl

WAMPP
LAMPP

Web Languages:

These are languages which the interpereted by the Web Browser.


Server Side Language
Client Side Language


HTML is a client side language.

PHP, ASP are Server Side Language.

PHP: PHP Hypertext Preprocessor

This is a recursive acronym.

Requirements:

PC
XAMPP
Text Editor: Notepad or Win32pad.

Installation of XAMPP

Double click on the XAMPP package and select the drive on which you want to install the XAMPP.


You will a folder named XAMPP at the location C:/XAMPP

There is folder named HTDOCS in C:/XAMPP in which we will place all our webpages.

PHP:

Free and Open Source
Secure
Takes less time to develop resource.

MY SQL

Structure Query Language.

It used to manage database.

Database is a collection of tables and records.


PHP Coding


$a=5;
$b=4;

print "$a
";
print "$b
";

$h="Hello World !";
print "$h
";

$c=$a+$b;

print "This is "."CPP
";

print "The sum of \$a and \$b is $c
";

print $a++;
print ++$a;
?>

No comments:

Post a Comment