Skip to content

Instantly share code, notes, and snippets.

@karellism
Created November 1, 2015 02:39
Show Gist options
  • Save karellism/690e4ac27316c61fd064 to your computer and use it in GitHub Desktop.
Save karellism/690e4ac27316c61fd064 to your computer and use it in GitHub Desktop.
Build the Form for simple CMS - php file
public function display_admin() {
return <<<ADMIN_FORM
<form action="{$_SERVER['PHP_SELF']}" method="post">
<label for="title">Title:</label>
<input name="title" id="title" type="text" maxlength="150" />
<label for="bodytext">Body Text:</label>
<textarea name="bodytext" id="bodytext"></textarea>
<input type="submit" value="Create This Entry!" />
</form>
ADMIN_FORM;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment