Created
November 6, 2013 11:02
-
-
Save alpham/7334315 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
include_once $_SERVER['DOCUMENT_ROOT'] . | |
'/includes/helpers.inc.php'; ?> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title><?php htmlout($pageTitle); ?></title> | |
</head> | |
<body> | |
<h1><? php htmlout($pageTitle); ?></h1> | |
<form action="?<?php htmlout($action); ?>" method="post"> | |
<div> | |
<label for="name">Name: <input type="text" name="name" | |
id="name" value="<?php htmlout($name); ?>"></label> | |
</div> | |
<div> | |
<label for="email">Email: <input type="text" name="email" | |
id="email" value="<?php htmlout($email); ?>"></label> | |
</div> | |
<div> | |
<input type="hidden" name="id" value="<?php htmlout($id); ?>"> | |
<input type="submit" value="<?php htmlout($button); ?>"> | |
</div> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment