Skip to content

Instantly share code, notes, and snippets.

@karellism
Created November 1, 2015 02:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karellism/ef609389f5580d28950d to your computer and use it in GitHub Desktop.
Save karellism/ef609389f5580d28950d to your computer and use it in GitHub Desktop.
Code template for a simple CMS - php class
<?php
class simpleCMS {
var $host;
var $username;
var $password;
var $table;
public function display_public() {
}
public function display_admin() {
}
public function write() {
}
public function connect() {
}
private function buildDB() {
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment