Beginning...
This is first PHP article.Article's Objectives:
- Learn <?php and ?> tags
- Output 'Hello World!'
PHP Start and End Tags
PHP Start Tag
<?php
This tag start PHP coding. After this tag you can ONLY use PHP tags and functions.
PHP End Tag
?>
This tag end PHP coding. After this tag you CAN NOT use PHP tags and functions.
PHP Echo and Print
If you use echo or print functions, you can write HTML coding. First example is very basic.
<?php
echo "Hello World!";
?>
If you want , you can use with print. Let's example:
<?php
print "Hello World!";
?>
Homeworks ( Ooh No! )
- Write 'I'm a coder' with red color and underline.
0 yorum:
Yorum Gönder