Let's Get Started with a Variables Page!

  1. Open Notepad++
  2. Choose: File -> New
  3. Copy the PHP Variables Template (PHP) code (below)
  4. Paste that code into your new file
  5. Change the put-title-of-this-page-here, put-heading-of-this-page-here, and put-paragraph-of-this-page-here strings.
  6. Click: File -> Save As
  7. Name your file: /public_html/variables.php
  8. Change the Save as type: to: PHP Hypertext Preprocessor (*.php)
  9. Click: Save
  10. Visit your page (http://bscacad3.buffalostate.edu/variables.php) in your favorite web browser
  11. Make any changes
  12. Save your changes

PHP Variables Template (PHP)

<?php 
$title = "put-title-of-this-page-here"; 
$h2    = "put-heading-of-this-page-here"; 
$par   = "put-paragraph-of-this-page-here"; 
?>
<!doctype html>
<html>
  <head>
    <title><?php echo($title); ?></title>
  <head>
  <body>
    <h2><?php echo($h2); ?></h2>
    <p><?php echo($par); ?></p>
  </body>
</html>
Output