Technology Programming

Step-by-Step PHP Training

    The Basics

    • The basics of PHP are syntax and layout in HTML pages. The first syntax standard to know is that PHP code is surrounded in blocks that indicate code. These blocks are designated with a starting "<?php" and an ending "?>". Anything within these code blocks is recognized as PHP and executed on the server. Below is an example of code that writes "Hello World" to the Web page.

      <?php
      echo "Hello World";
      ?>

      Notice the semicolon at the end of the statement. This is a part of PHP code required to indicate the termination of a line of code. Without the semicolon, the compiler will throw an error during run-time.

    Variables

    • Variables are syntax required for any programming language. Variables are denoted in PHP with a "$" prefix. Variables can be strings, integers, decimals or objects. The code below is an example of declared variables:

      <?php
      $aString = "My First Program";
      $aNumber = 20;
      ?>

      PHP is considered a "loose" language. While most programming languages require the programmer to define variables, PHP allows developers to assign variables without first declaring them.

    Form Processing

    • One common function of PHP is processing form variables when a user submits a Web page. The PHP code processes the input and sends it to the database or displays it to the user. The code below is an example of PHP retrieving variables from the first name in a form and displaying them to the browser window:

      <html>
      <body>

      Hello <?php echo $_POST["first_name"]; ?>.

      </body>
      </html>

SHARE
RELATED POSTS on "Technology"
Blitzerwarner: Could You Escape the Speed Cameras?
Blitzerwarner: Could You Escape the Speed Cameras?
What Makes a Perfect Web Design Company?
What Makes a Perfect Web Design Company?
Inside No-Fuss Products In Gaming Computers
Inside No-Fuss Products In Gaming Computers
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Free Music Players For Websites
Free Music Players For Websites
'See How NCP Tracks Down Fake Ration Card Holders'
'See How NCP Tracks Down Fake Ration Card Holders'
You Can Stop Panic Attacks in Just two Minutes
You Can Stop Panic Attacks in Just two Minutes
WordPress Blog to WP Site! A Journey to Online Success
WordPress Blog to WP Site! A Journey to Online Success
Videos will give your business portal an extra leverage
Videos will give your business portal an extra leverage
Excellent Ways To Make Weight Loss Work For You
Excellent Ways To Make Weight Loss Work For You
Five Notable Differences between National and International Logo Designs
Five Notable Differences between National and International Logo Designs
Who Should Your Phoenix Web Design Client Be?
Who Should Your Phoenix Web Design Client Be?
White Papers & Other Documents - including ALFLB
White Papers & Other Documents - including ALFLB
Google Analytics Tips
Google Analytics Tips
Want To Make Your Website Faster? Follow These Steps
Want To Make Your Website Faster? Follow These Steps
The Starting of Couture Apparel
The Starting of Couture Apparel
Choose Custom Website Design Services
Choose Custom Website Design Services
Choosing the Right Joomla CMS Developer
Choosing the Right Joomla CMS Developer
A Look at SQL Server Denali AlwaysOn
A Look at SQL Server Denali AlwaysOn
4 Tips to Choose the Perfect Flash Animation Course
4 Tips to Choose the Perfect Flash Animation Course

Leave Your Reply

*