Last active
August 29, 2015 14:18
-
-
Save LocalCommit/7734a3d3b7003175f437 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Form Example</title> | |
</head> | |
<body> | |
<form action="" method="post"> | |
<div><label for="firstname">Enter ID: | |
<input type="text" name="id" id="firstname"></label> | |
</div> | |
<div><input type="submit" value="GO"></div> | |
</form> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Goodby Message Example</title> | |
</head> | |
<body> | |
<p> | |
<?php echo $output; ?> | |
</p> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!isset($_REQUEST['id'])) | |
{ | |
include 'form.html.php'; | |
} | |
else | |
{ | |
$id = $_REQUEST['id']; | |
if ($id == 'welcome') | |
{ | |
$output = "Welcome controller."; | |
include 'welcome.html.php'; | |
} | |
else | |
{ | |
$output = 'Goodby controller.'; | |
include 'goodby.html.php'; | |
} | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Welcome Message Example</title> | |
</head> | |
<body> | |
<p> | |
<?php echo $output; ?> | |
</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment