CyberCodes
[PHP TUT. PART 1] Basic PHP Syntax Welcome

Reminders sa mga rehistradong myembro:

•ang lengwahe na gagamitin ay pawang english at tagalog lamang

•Bawal po dito ang pakikipag away

•Bawal ang mga shorcut na mga words
Example: txt, Pwd, at iba pa

•Bawal mababastos at masasakit na salita o anu mang makakasakit
ng damdamin ng isang myembro ng forum na ito

•use the "like" button if the post of the following user you think are usefull



Join the forum, it's quick and easy

CyberCodes
[PHP TUT. PART 1] Basic PHP Syntax Welcome

Reminders sa mga rehistradong myembro:

•ang lengwahe na gagamitin ay pawang english at tagalog lamang

•Bawal po dito ang pakikipag away

•Bawal ang mga shorcut na mga words
Example: txt, Pwd, at iba pa

•Bawal mababastos at masasakit na salita o anu mang makakasakit
ng damdamin ng isang myembro ng forum na ito

•use the "like" button if the post of the following user you think are usefull

CyberCodes
Would you like to react to this message? Create an account in a few clicks or log in to continue.

[PHP TUT. PART 1] Basic PHP Syntax

Go down

[PHP TUT. PART 1] Basic PHP Syntax Empty [PHP TUT. PART 1] Basic PHP Syntax

Post by cybercodes Wed Jul 04, 2012 4:53 am

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

On servers with shorthand-support, you can start a PHP script with <? and end with ?>.

For maximum compatibility, we recommend that you use the standard form (<?php) rather than the shorthand form.

Code:
<?php
?>

A PHP file must have a .php extension.

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

Below, we have an example of a simple PHP script that sends the text "Hello World" back to the browser:
Code:
<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.

There are two basic statements to output text with PHP: echo and print.

In the example above we have used the echo statement to output the text "Hello World".

Comments in PHP
In PHP, we use // to make a one-line comment or /* and */ to make a comment block:
Code:
<html>
<body>

<?php
//This is a comment

/*
This is
a comment
block
*/
?>

</body>
</html>


PROCEED TO NEXT STEPS:[You must be registered and logged in to see this link.]
cybercodes
cybercodes
Administrator
Administrator

Posts : 102
Credits : 101423
Fame : 56
Join date : 2012-06-01
Age : 30

https://cybercodes.forumtl.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum