Let's Get Started with a PHP if/else
Page!
- Open Notepad++
- Choose:
File -> New
- Copy the PHP if/else Template (PHP) code (below)
- Paste that code into your new file
- Change the put-welcome-heading-here, and put-welcome-paragraph here
strings.
- Change the put-title-of-this-page-here to:
if/else
- Click: File -> Save As
- Name your file: \www\ifelse.php
- Change the
Save as type:
to: PHP Hypertext Preprocessor (*.php)
- Click: Save
- Visit your page (http://buffalo.edu/ifelse.php) in your favorite web browser
- Make any changes
- Save your changes
PHP if/else 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>
<?php
if ($title == "if/else") {
print("You are on the if/else
page.");
} else {
print("You are not on the if/else
page. :-(");
}
?>
</body>
</html>
Output