SlideShare une entreprise Scribd logo
1  sur  12
My self Learn -PHP ,[object Object]
Characteristics of PHP?
Requierments to run PHP?
Syntax of PHP?
PHP Loop Types
Arrays and Strings
PHP File Inclusion
GET and Post Methods
Cookies
Sessions
File upload
PHP Date & time method.

Contenu connexe

Tendances (19)

PHP: Hypertext Preprocessor Introduction
PHP: Hypertext Preprocessor IntroductionPHP: Hypertext Preprocessor Introduction
PHP: Hypertext Preprocessor Introduction
 
Php & mysql course syllabus
Php & mysql course syllabusPhp & mysql course syllabus
Php & mysql course syllabus
 
PHP presentation - Com 585
PHP presentation - Com 585PHP presentation - Com 585
PHP presentation - Com 585
 
Php
PhpPhp
Php
 
Advantages of Choosing PHP Web Development
Advantages of Choosing PHP Web DevelopmentAdvantages of Choosing PHP Web Development
Advantages of Choosing PHP Web Development
 
Php psr standard 2014 01-22
Php psr standard 2014 01-22Php psr standard 2014 01-22
Php psr standard 2014 01-22
 
Installation of wordpress
Installation of wordpressInstallation of wordpress
Installation of wordpress
 
Php
PhpPhp
Php
 
Php course with live project training in janakpuri, New Delhi
Php course with live project training in janakpuri, New Delhi Php course with live project training in janakpuri, New Delhi
Php course with live project training in janakpuri, New Delhi
 
PHP LICTURES ..........
PHP LICTURES ..........PHP LICTURES ..........
PHP LICTURES ..........
 
build your own php extension
build your own php extensionbuild your own php extension
build your own php extension
 
SSI
SSISSI
SSI
 
Apache
ApacheApache
Apache
 
Php basics
Php basicsPhp basics
Php basics
 
Build your own PHP extension
Build your own PHP extensionBuild your own PHP extension
Build your own PHP extension
 
Presentation1
Presentation1Presentation1
Presentation1
 
Php tutorial
Php tutorialPhp tutorial
Php tutorial
 
CakePHP 3.0: Embracing the future
CakePHP 3.0: Embracing the futureCakePHP 3.0: Embracing the future
CakePHP 3.0: Embracing the future
 
How PHP Works ?
How PHP Works ?How PHP Works ?
How PHP Works ?
 

En vedette

En vedette (7)

03 Php Array String Functions
03 Php Array String Functions03 Php Array String Functions
03 Php Array String Functions
 
PHP Unit 4 arrays
PHP Unit 4 arraysPHP Unit 4 arrays
PHP Unit 4 arrays
 
PHP array 1
PHP array 1PHP array 1
PHP array 1
 
Web app development_php_06
Web app development_php_06Web app development_php_06
Web app development_php_06
 
Php array
Php arrayPhp array
Php array
 
Arrays in PHP
Arrays in PHPArrays in PHP
Arrays in PHP
 
Slideshare ppt
Slideshare pptSlideshare ppt
Slideshare ppt
 

Similaire à My self learn -Php (20)

Php1
Php1Php1
Php1
 
Php1
Php1Php1
Php1
 
Php1
Php1Php1
Php1
 
Php
PhpPhp
Php
 
Php1(2)
Php1(2)Php1(2)
Php1(2)
 
PHP
 PHP PHP
PHP
 
Php
PhpPhp
Php
 
Php
PhpPhp
Php
 
Php
PhpPhp
Php
 
Php notes
Php notesPhp notes
Php notes
 
Php
PhpPhp
Php
 
Php
PhpPhp
Php
 
Php
PhpPhp
Php
 
Justmeans power point
Justmeans power pointJustmeans power point
Justmeans power point
 
Justmeans power point
Justmeans power pointJustmeans power point
Justmeans power point
 
Justmeans power point
Justmeans power pointJustmeans power point
Justmeans power point
 
Justmeans power point
Justmeans power pointJustmeans power point
Justmeans power point
 
Justmeans power point
Justmeans power pointJustmeans power point
Justmeans power point
 
Justmeans power point
Justmeans power pointJustmeans power point
Justmeans power point
 
Justmeans power point
Justmeans power pointJustmeans power point
Justmeans power point
 

My self learn -Php

  • 1.
  • 8. GET and Post Methods
  • 12. PHP Date & time method.
  • 13.
  • 14. It is server side scripting Language.
  • 15. It is used for web designing
  • 16. It is integrated with a number of popular databases, including MySQL, PostgreSQL, Oracle, Sybase, Informix, and Microsoft SQL Server.
  • 17. Characteristics Simplicity Efficiency Security Flexibility Familiarity
  • 18. Requierments to run PHP 1. It is serverside scripting language so probabbly We need follwing severs. Apache PHP XAMMP MySql Software Perl So if weinstall Xampp everything will be installed . 2.Any Editor to write coding like notepad. 3.Browser to to view the output of program.
  • 19. SYNTAX <? php type coding here ?> Example: <? php echo Hi ?>
  • 20. LOOP TYPES 1. if else 2. for loop 3.for each 4. while loop 5.do while loop 6.break 7.continue Syntax and codings similar to C language.
  • 21. Arrays and Strings Array is data structuer that stores one or more Similar types of variables in single name. * Numeric array - An array with a numeric index * Associative array - An array where each ID key is associated with a value * Multidimensional array - An array containing one or more arrays
  • 22. Strings String is sequences of character EX: $string_1 = &quot;This is a string in double quotes&quot;; There are more number of function. For functions refer: http://www.w3schools.com/php/php_ref_string.asp
  • 23. FILE INCLSION 1. include(): The include() function takes all the text in a specified file and copies it into the file that uses the include function Ex: menu.php file contains <? php home-> user1->user2 ?> X.Php include th menu.php file using following coding <?php include(&quot;menu.php&quot;); ?> OUTPUT OF X.php: home->user1->user2
  • 24. FILE INCLUSION requier()-The require() function takes all the text in a specified file and copies it into the file that uses the include function EX : if we want to use x.php file which already include the menu.php file <?php require(&quot;x.php&quot;); ?>
  • 25. GET &POST METHODS GET: It sends the encoded user information appended to the page request. The page and the encoded information are separated by the ? Character . Ex: output contains the submitted page information. <form action=&quot;welcome.php&quot; method=&quot;get&quot;> Name: <input type=&quot;text&quot; name=&quot;fname&quot; /> Age: <input type=&quot;text&quot; name=&quot;age&quot; /> <input type=&quot;submit&quot; /> </form> OUTPUT: http://www.w3schools.com/welcome.php? fname=Peter&age=37
  • 26. POST METHOD Using the GET method is restricted to send upto 1024 characters only but if we want to send more then 1024 char we will go forthe POST method does not have any restriction on data size to be sent. Ex: <form action=&quot;welcome.php&quot; method=&quot;post&quot;> Name: <input type=&quot;text&quot; name=&quot;fname&quot; /> Age: <input type=&quot;text&quot; name=&quot;age&quot; /> <input type=&quot;submit&quot; /> </form> OUTPUT: The url does not store vaue but the page retrive the value http://www.w3schools.com/welcome.php