Creating my first PHP file |
mypage.html |
<html> <head> <title>This is my page</title> </head> <body> This is the content of my page. </body> </html> |
mypage.php |
<html> <head> <title>This is my page</title> </head> <body> This is the content of my page. <?php print "Do you like it?"; ?> </body> </html> |
mypage.php |
<html> <head> <title>This is my page</title> </head> <body> This is the content of my page. <?php print "Do you like it?"; print "<br>"; print "<b>If not, please visit a different page.</b>"; print "<br>"; print "<h1>Goodbay</h1>"; ?> </body> </html> |
mypage.php |
<html> <head> <title>This is my page</title> </head> <body <?php print "bgcolor=#FFFFFF"; ?>> <?php print "Hello!<br>"; ?> This is the content of my page. <?php print "Do you like it?"; print "<br>"; print "<b>If not, please visit a different page.</b>"; print "<br>"; print "<h1>Goodbay</h1>"; ?> </body> </html> |
Code 1 |
<?php print "Hello!<br>"; print "I am Joe"; ?> |
Code 2 |
<?php print "Hello!<br>"."I am Joe"; ?> |
The code |
The output |
Use "\n" to add a line break <pre> <?php print "AA\nBB\nCC\nDD\nEE"; ?> </pre> |
Use "\n" to add a line break
AA |
Use "\"" to add brakets<br> <?php print "He said \"Hello\" to John"; ?> |
Use "\"" to add brakets He said "Hello" to John |
$my_favorite_song $my_counter $username etc |
mypage.php |
<?php $my_name="Joe"; $my_hello_text="Hello everybody!"; $year_create=2002; ?> <html> <head> <title>This is <?php print $my_name; ?>´spage</title> </head> <body> <?php print $my_hello_text; ?> This page was written in <?php print $year_create; ?>. </body> </html> |
$my_name, $my_hello_text
are strings $year_create is a number |
The code |
The output |
<?php $year_create=2002; print "This page was written in ".$year_create; ?> |
This page was written in 2002 |
<?php $year_create=2002; print "This page was written in $year_create"; ?> |
This page was written in 2002 |
<?php $the_text="This page was written in "; $year_create=2002; print $the_text.$year_create; ?> |
This page was written in 2002 |
<?php $the_text="This page was written in "; $year_create=2002; print "$the_text$year_create"; ?> |
This page was written in 2002 |