SlideShare a Scribd company logo
1 of 24
PHP
Made by:Nupoor Garg
M-tech(CSE)

Professional Training Institute
BRIEF HISTORY
PHP FULL FORMS
DEFINITION

PHP is a server side scripting language that is
embedded in HTML. It is used to manage dynamic
content in your website.
WAMP SERVER
"Hello World" Script in
PHP
<HTML>

<HEAD>

<TITLE> First program <TITLE>

<BODY>

<BODY>

</HTML>

HELLO WORLD!

<?php

echo "Hello, World!";

</HEAD>
</BODY
?>
VARIABLES IN PHP
All variables are
declared with leading
dollar($) sign.

$vary=34;
$many=5.34;

Variable can, but do not
need to be declared
before assignment.

PHP does a good job of
automatically converting
types from one to
another when
necessary.

$sum=34;
$sum=“hiii”;
OPERATORS
Arithmetic Operators

Logical (or Relational) Operators

Assignment Operators

Conditional (or ternary) Operators
DATE FUNCTION IN PHP
• date(format)
EXAMPLE:DATE(

);

• Print date with time
EXAMPLE:DATE( “d-m-y h:m:s” );
Time zones
• To set the time zone
date_default_timezone_set();

• To get the time zone
date_default_timezone_get();
ARRAYS IN PHP
• Numeric array
An array with a numeric index. Values are stored and accessed in
linear fashion

• Associative array
An array with strings as index. This stores element values in
association with key values rather than in a strict linear index order.
Example (Numeric arrays)
• <?php
$cars=array("Volvo","BMW","Toyota");
• Echo “I like”.$cars[2];
• ?>
Example (associative array)
•
•
•
•
•
•
•
•
•
•

<html>
<body>
<?php
$salaries['mohammad'] = "high";
$salaries['qadir'] = "medium";
$salaries['zara'] = "low";
echo "Salary of qadir is ". $salaries['qadir']."<br/>";
?>
</body>
</html>
HEADER,INCLUDE AND
REQUIRE
• HEADER
IT IS USED TO REDIRECT TO ANOTHER PAGE.

• INCLUDE
IT IS USED TO INCLUDE THE ANOTHER PAGE INTO THE
CURRENT PAGE.

• REQUIRE
SAME AS INCLUDE.
STEP 1 :- TO ESTABLISH CONNECTION

mysql_connect(host,username,password,databasename);
<? PHP
$LINK=MYSQL_CONNECT(“LOCALHOST”,”ROOT”,””,”myd”);
IF($LINK)
{
ECHO “CONNECTION ESTABLISHED”
}
MYSQL BASIC QUERIES
• TO CREATE DATABASE
CREATE DATABASE DB_NAME;

• TO CREATE TABLE
CREATE TABLE TB_NAME(COL_NM1
DATATYPE,COL_NM2 DATATYPE……);

• TO LIST THE DATA
SELECT * FROM TABLE_NAME;
• TO INSERT VALUES IN TABLE
INSERT INTO TABLE_NAME
VALUES(VALUE1,VALUE2……..VALUEN);
QUERIES TO BE USED
WITH MYSQL
• MYSQLI_CONNECT();
• The mysqli_connect() function opens a
MySQL connection.
• This function returns the connection on
success, or FALSE on failure.
CONT..
• MYSQLI_QUERY($CON,”QUERY”);
• MYSQLI_CLOSE($CON);
• Closes a previously opened database
connection
FETCHING DATA FROM
MYSQL DATABASE
ORDER BY RAND()
FUNCTION IN MYSQL
• MySQL has a ORDER BY RAND()
function that can be used to randomize the
set of values.
• SYNTAX
• SELECT * FROM TABLE_NAME ORDER
BY RAND();
WORDPRESS
WordPress is a free and open source blogging tool and a contentmanagement system based on PHP and MySQL.

WordPress is an OPEN SOURCE project, which means there are
hundreds of people all over the world working on it.

WordPress started as just a blogging system, but has evolved to
be used as full content management system and so much more
through the thousands of plugins and widgets and themes.
WordPress is limited only by your imagination.
Learn Php in Delhi

More Related Content

What's hot

System performance tuning
System performance tuningSystem performance tuning
System performance tuningMenandro Oba
 
Slim RedBeanPHP and Knockout
Slim RedBeanPHP and KnockoutSlim RedBeanPHP and Knockout
Slim RedBeanPHP and KnockoutVic Metcalfe
 
Class 6 - PHP Web Programming
Class 6 - PHP Web ProgrammingClass 6 - PHP Web Programming
Class 6 - PHP Web ProgrammingAhmed Swilam
 
Phpne august-2012-symfony-components-friends
Phpne august-2012-symfony-components-friendsPhpne august-2012-symfony-components-friends
Phpne august-2012-symfony-components-friendsMichael Peacock
 
Redis for your boss 2.0
Redis for your boss 2.0Redis for your boss 2.0
Redis for your boss 2.0Elena Kolevska
 
MySQLi - An Improved Extension of MySQL
MySQLi - An Improved Extension of MySQLMySQLi - An Improved Extension of MySQL
MySQLi - An Improved Extension of MySQLGlobal Codester
 
Inside Bokete: Web Application with Mojolicious and others
Inside Bokete:  Web Application with Mojolicious and othersInside Bokete:  Web Application with Mojolicious and others
Inside Bokete: Web Application with Mojolicious and othersYusuke Wada
 
Intro to php
Intro to phpIntro to php
Intro to phpSp Singh
 
Codeigniter : Custom Routing - Manipulate Uri
Codeigniter : Custom Routing - Manipulate UriCodeigniter : Custom Routing - Manipulate Uri
Codeigniter : Custom Routing - Manipulate UriAbdul Malik Ikhsan
 
New: Two Methods of Installing Drupal on Windows XP with XAMPP
New: Two Methods of Installing Drupal on Windows XP with XAMPPNew: Two Methods of Installing Drupal on Windows XP with XAMPP
New: Two Methods of Installing Drupal on Windows XP with XAMPPRupesh Kumar
 

What's hot (20)

System performance tuning
System performance tuningSystem performance tuning
System performance tuning
 
Php basics
Php basicsPhp basics
Php basics
 
Slim RedBeanPHP and Knockout
Slim RedBeanPHP and KnockoutSlim RedBeanPHP and Knockout
Slim RedBeanPHP and Knockout
 
REST API with CakePHP
REST API with CakePHPREST API with CakePHP
REST API with CakePHP
 
Modern php
Modern phpModern php
Modern php
 
Redis for your boss
Redis for your bossRedis for your boss
Redis for your boss
 
Class 6 - PHP Web Programming
Class 6 - PHP Web ProgrammingClass 6 - PHP Web Programming
Class 6 - PHP Web Programming
 
RESTful web services
RESTful web servicesRESTful web services
RESTful web services
 
Phpne august-2012-symfony-components-friends
Phpne august-2012-symfony-components-friendsPhpne august-2012-symfony-components-friends
Phpne august-2012-symfony-components-friends
 
Redis for your boss 2.0
Redis for your boss 2.0Redis for your boss 2.0
Redis for your boss 2.0
 
MySQLi - An Improved Extension of MySQL
MySQLi - An Improved Extension of MySQLMySQLi - An Improved Extension of MySQL
MySQLi - An Improved Extension of MySQL
 
Php mysql
Php mysqlPhp mysql
Php mysql
 
Mojo as a_client
Mojo as a_clientMojo as a_client
Mojo as a_client
 
Phphacku iitd
Phphacku iitdPhphacku iitd
Phphacku iitd
 
PHP for hacks
PHP for hacksPHP for hacks
PHP for hacks
 
Inside Bokete: Web Application with Mojolicious and others
Inside Bokete:  Web Application with Mojolicious and othersInside Bokete:  Web Application with Mojolicious and others
Inside Bokete: Web Application with Mojolicious and others
 
Intro to php
Intro to phpIntro to php
Intro to php
 
Codeigniter : Custom Routing - Manipulate Uri
Codeigniter : Custom Routing - Manipulate UriCodeigniter : Custom Routing - Manipulate Uri
Codeigniter : Custom Routing - Manipulate Uri
 
Mojolicious
MojoliciousMojolicious
Mojolicious
 
New: Two Methods of Installing Drupal on Windows XP with XAMPP
New: Two Methods of Installing Drupal on Windows XP with XAMPPNew: Two Methods of Installing Drupal on Windows XP with XAMPP
New: Two Methods of Installing Drupal on Windows XP with XAMPP
 

Viewers also liked (6)

2013 14 half-season packet-1
2013 14 half-season packet-12013 14 half-season packet-1
2013 14 half-season packet-1
 
Chalo america
Chalo americaChalo america
Chalo america
 
Vtips matlab course content
Vtips matlab course contentVtips matlab course content
Vtips matlab course content
 
Java Training in New Delhi Lajpat Nagar
Java Training in New Delhi Lajpat NagarJava Training in New Delhi Lajpat Nagar
Java Training in New Delhi Lajpat Nagar
 
Matlab training Introduction at VTIPS
Matlab training Introduction at VTIPSMatlab training Introduction at VTIPS
Matlab training Introduction at VTIPS
 
Sponsorship letter
Sponsorship letterSponsorship letter
Sponsorship letter
 

Similar to Php Training Workshop by Vtips

Similar to Php Training Workshop by Vtips (20)

PHP and MySQL.ppt
PHP and MySQL.pptPHP and MySQL.ppt
PHP and MySQL.ppt
 
PHP from soup to nuts Course Deck
PHP from soup to nuts Course DeckPHP from soup to nuts Course Deck
PHP from soup to nuts Course Deck
 
Php basic for vit university
Php basic for vit universityPhp basic for vit university
Php basic for vit university
 
Php with mysql ppt
Php with mysql pptPhp with mysql ppt
Php with mysql ppt
 
Php summary
Php summaryPhp summary
Php summary
 
Php
PhpPhp
Php
 
Php a dynamic web scripting language
Php   a dynamic web scripting languagePhp   a dynamic web scripting language
Php a dynamic web scripting language
 
Php
PhpPhp
Php
 
HackU PHP and Node.js
HackU PHP and Node.jsHackU PHP and Node.js
HackU PHP and Node.js
 
Php talk
Php talkPhp talk
Php talk
 
Php hacku
Php hackuPhp hacku
Php hacku
 
PHP
PHPPHP
PHP
 
php (Hypertext Preprocessor)
php (Hypertext Preprocessor)php (Hypertext Preprocessor)
php (Hypertext Preprocessor)
 
Starting with PHP and Web devepolment
Starting with PHP and Web devepolmentStarting with PHP and Web devepolment
Starting with PHP and Web devepolment
 
FYBSC IT Web Programming Unit IV PHP and MySQL
FYBSC IT Web Programming Unit IV  PHP and MySQLFYBSC IT Web Programming Unit IV  PHP and MySQL
FYBSC IT Web Programming Unit IV PHP and MySQL
 
Scaling php applications with redis
Scaling php applications with redisScaling php applications with redis
Scaling php applications with redis
 
php 1
php 1php 1
php 1
 
Current state-of-php
Current state-of-phpCurrent state-of-php
Current state-of-php
 
PDO Basics - PHPMelb 2014
PDO Basics - PHPMelb 2014PDO Basics - PHPMelb 2014
PDO Basics - PHPMelb 2014
 
Fatc
FatcFatc
Fatc
 

Recently uploaded

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersChitralekhaTherkar
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 

Recently uploaded (20)

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of Powders
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 

Php Training Workshop by Vtips

  • 4. DEFINITION PHP is a server side scripting language that is embedded in HTML. It is used to manage dynamic content in your website.
  • 6. "Hello World" Script in PHP <HTML> <HEAD> <TITLE> First program <TITLE> <BODY> <BODY> </HTML> HELLO WORLD! <?php echo "Hello, World!"; </HEAD> </BODY ?>
  • 7. VARIABLES IN PHP All variables are declared with leading dollar($) sign. $vary=34; $many=5.34; Variable can, but do not need to be declared before assignment. PHP does a good job of automatically converting types from one to another when necessary. $sum=34; $sum=“hiii”;
  • 8. OPERATORS Arithmetic Operators Logical (or Relational) Operators Assignment Operators Conditional (or ternary) Operators
  • 9. DATE FUNCTION IN PHP • date(format) EXAMPLE:DATE( ); • Print date with time EXAMPLE:DATE( “d-m-y h:m:s” );
  • 10. Time zones • To set the time zone date_default_timezone_set(); • To get the time zone date_default_timezone_get();
  • 11. ARRAYS IN PHP • Numeric array An array with a numeric index. Values are stored and accessed in linear fashion • Associative array An array with strings as index. This stores element values in association with key values rather than in a strict linear index order.
  • 12. Example (Numeric arrays) • <?php $cars=array("Volvo","BMW","Toyota"); • Echo “I like”.$cars[2]; • ?>
  • 13. Example (associative array) • • • • • • • • • • <html> <body> <?php $salaries['mohammad'] = "high"; $salaries['qadir'] = "medium"; $salaries['zara'] = "low"; echo "Salary of qadir is ". $salaries['qadir']."<br/>"; ?> </body> </html>
  • 14. HEADER,INCLUDE AND REQUIRE • HEADER IT IS USED TO REDIRECT TO ANOTHER PAGE. • INCLUDE IT IS USED TO INCLUDE THE ANOTHER PAGE INTO THE CURRENT PAGE. • REQUIRE SAME AS INCLUDE.
  • 15.
  • 16. STEP 1 :- TO ESTABLISH CONNECTION mysql_connect(host,username,password,databasename); <? PHP $LINK=MYSQL_CONNECT(“LOCALHOST”,”ROOT”,””,”myd”); IF($LINK) { ECHO “CONNECTION ESTABLISHED” }
  • 17. MYSQL BASIC QUERIES • TO CREATE DATABASE CREATE DATABASE DB_NAME; • TO CREATE TABLE CREATE TABLE TB_NAME(COL_NM1 DATATYPE,COL_NM2 DATATYPE……); • TO LIST THE DATA SELECT * FROM TABLE_NAME;
  • 18. • TO INSERT VALUES IN TABLE INSERT INTO TABLE_NAME VALUES(VALUE1,VALUE2……..VALUEN);
  • 19. QUERIES TO BE USED WITH MYSQL • MYSQLI_CONNECT(); • The mysqli_connect() function opens a MySQL connection. • This function returns the connection on success, or FALSE on failure.
  • 20. CONT.. • MYSQLI_QUERY($CON,”QUERY”); • MYSQLI_CLOSE($CON); • Closes a previously opened database connection
  • 22. ORDER BY RAND() FUNCTION IN MYSQL • MySQL has a ORDER BY RAND() function that can be used to randomize the set of values. • SYNTAX • SELECT * FROM TABLE_NAME ORDER BY RAND();
  • 23. WORDPRESS WordPress is a free and open source blogging tool and a contentmanagement system based on PHP and MySQL. WordPress is an OPEN SOURCE project, which means there are hundreds of people all over the world working on it. WordPress started as just a blogging system, but has evolved to be used as full content management system and so much more through the thousands of plugins and widgets and themes. WordPress is limited only by your imagination.
  • 24. Learn Php in Delhi