Posts

Showing posts with the label Lecture # 2

Php Syntax Detail Discussion

This chapter will give you an idea of very basic syntax of PHP and very important to make your PHP foundation strong. Escaping to PHP The PHP parsing engine needs a way to differentiate PHP code from other elements in the page. The mechanism for doing so is known as 'escaping to PHP'. There are four ways to do this − Canonical PHP tags The most universally effective PHP tag style is − <?php...?> If you use this style, you can be positive that your tags will always be correctly interpreted. Short-open (SGML-style) tags Short or short-open tags look like this − <?...?> Short tags are, as one might expect, the shortest option You must do one of two things to enable PHP to recognize the tags − Choose the --enable-short-tags configuration option when you're building PHP. Set the short_open_tag setting in your php.ini file to on. This option must be disabled to parse XML with PHP because the same syntax is used for XML tags. ASP-style t...

Basic Php Syntax and First Example

A PHP script can be placed anywhere in the document. A PHP script starts with <?php and ends with ?> Example:                <?php                   // PHP code goes here                ?> The default file extension for PHP files is ".php". A PHP file normally contains HTML tags, and some PHP scripting code. Below, we have an example of a simple PHP file, with a PHP script that uses a built-in PHP function "echo" to output the text "Hello World!" on a web page: Example:                 <!DOCTYPE html>                 <html>                 <body>                  <h1>My first PHP page</h1>             ...