A super basic introduction to PHP.
This tutorial will review the purpose of using a server-side language such as PHP and walk through the process of creating and testing your first PHP file. Here is how you use PHP to display a "Hello World" message:
<?php echo '<p>Hello World!</p>'; ?>
- Open up a new file and name it intro.php
- Fill the intro.php file with the standard HTML tags (
doctype
,html
,head
,body
, andtitle
) - Add a heading use an HTML
h1
tag - In the
body
add an open and clode PHP tag (<?php
and?>
) - Within the PHP tags use
echo
to display the message "Hello World" - Upload the PHP file to your server (or use your localhost) and test using a browser
- Visual Studio Code or Brackets (or any code editor)
- Filezilla (or any FTP program)
Full tutorial URL: https://codeadam.ca/learning/php/php-introduction.html
