Monday, June 1, 2009

PHP Tutorial with XAMPP for Windows

Introduction


PHP is a powerful tool for making dynamic and interactive Web pages.

It is the widely-used, free, and efficient alternative to competitors such as Microsoft's ASP and other scripting languages.

In our tutorial you will learn about PHP, and how to execute scripts on your server.


XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use - just download, extract and start.


What is PHP?

  • PHP stands for PHP: Hypertext Preprocessor
  • PHP is a server-side scripting language, like Ruby on Rails, ASP, JSP and others
  • PHP scripts are executed on the server
  • PHP is an open source software
  • PHP supports many databases (MySQL, Oracle, PostgreSQL and etc.)
  • PHP is free to download and use
  • PHP files have a file extension of ".php" or ".php3"


Why PHP?
  • PHP runs on different platforms (Windows, Linux, Unix, etc.)
  • PHP is compatible with almost all servers used today (Apache, IIS, etc.)
  • PHP is FREE to download at www.php.net
  • PHP is easy to learn and runs efficiently on the server side
What do you Need?
Note: The default installation directory is C:\xampp and C:\xampp\htdocs is the location for the PHP file.


How to Run a PHP file using XAMPP?
  • Create a PHP file then save it to C:\xampp\htdocs directory.
  • Open your browser then type "http://localhost/Your PHP File name" or "http://I.P. Address/Your PHP File name"

Basic PHP Syntax

A PHP scripting block always starts with <?php and ends with ?>. A PHP scripting block can be placed anywhere in the document.

Example:
<?php
//Put your code here
?>


A PHP file normally contains HTML tags, Javascript and PHP scripting code.

Example:
<html>
<body>

<?php
echo " Hello World ";
?>

</body>
</html>

Each code line in PHP must end with a semicolon. The semicolon is a separator and is used to distinguish one set of instructions from another.

Note: The file must have a .php or .php3 extension else the PHP code will not be executed.


Comments in PHP
  • // to make a single-line comment
  • /* and */ to make a large comment block.
Example:
<html>
<body>

<?php

//This is a comment

/*
This is
a comment
block
*/

?>

</body>
</html>


Variable Declarations in PHP

Variables are used for storing a values, like text strings, numbers or arrays.
In PHP, a variable does not need to be declared before adding a value to it and no data type needed, PHP will automatically converts the variable to the correct data type, depending on its value.

PHP variables are start with a $ sign symbol.

Example:
$variable_name = value;


Naming Rules for PHP Variables
  • A variable name must start with a letter or an underscore "_"
  • A variable name should not contain spaces.
  • A variable name can only contain alpha-numeric characters and underscores (a-z, A-Z, 0-9, and _ )
Valid Example:
$variable_name
$VariableName
$varName
$varName1




33 comments:

  1. Nice page, ill send you some visitors and give you a dig. I proof sites for quad hits and seen this and liked it. Very nicely put together

    ReplyDelete
  2. Thanks a lot I was looking for some initial info.

    ReplyDelete
  3. thanks a lot. I was bit confuse with local host setting and PHP setting. but with this information , i am all clear.. thanks a lot again...

    ReplyDelete
  4. nice page.... i learn a lot.... thanks

    ReplyDelete
  5. Good stuff, your blog came among the first for 'php tutorial on xampp' (without the '') which is exactly what I was looking for. I like that information is organised with bullets, that makes it all much clearer. Thanks

    ReplyDelete
  6. It thought PHP stood for Personal Home Pages

    ReplyDelete
  7. In using PHP programming I use WAMP but i plan to migrate to Ubuntu to use LAMP. BTW Nice tutorial :)

    ReplyDelete
  8. i want 2 get lots of example on php programing

    ReplyDelete
  9. hi good post for php beginners like me.
    Thanks a lot.

    Cegonsoft

    ReplyDelete
  10. NICE PAGE. ALL REQUIRE KNOWLEDGE IN A PAGE

    ReplyDelete
  11. Thanks for all your comments... This is for basics... but i have a plan to do advance if i have vacant time.

    ReplyDelete
  12. Was really helpful...less help is available for such topics

    ReplyDelete
  13. thanks nice basics about xampp and php

    ReplyDelete
  14. Very useful, had no idea where to start....

    ReplyDelete
  15. Thank you for sharing this info .. Very useful tips. Xampp is a great way to get started with php ...

    ReplyDelete
  16. U Make my day...brief & clear, Keep it up!!

    ReplyDelete
  17. secawan webserver vs XAMPP
    watch here
    /watch?v=0dFOE7K55Ss

    ReplyDelete
  18. freshly installalled and can't wait to get querty monotonous and all, and all,and all,and all echo?

    ReplyDelete
  19. thanks for providing basics....as I am beginner in programming..your tutorial helped a lot...

    regards
    venkat
    hyderabad,india

    ReplyDelete
  20. Hi friends ,

    I am new in Php , and i make a php project its running well from localhost but i want to run it by ip address -
    like http://xxx.xx.xxx.xx/8080/first.php


    http://localhost/8080/first.php in this way its running well


    please help me

    Thanks in andvanced







    ReplyDelete