Skip to content

Instantly share code, notes, and snippets.

View etienne-snippet's full-sized avatar

etienne-snippet

View GitHub Profile
@etienne-snippet
etienne-snippet / gist:1993145
Created March 7, 2012 13:32
CODEIGNITER: Model
<?php
class User_model extends CI_Model {
function __construct()
{
parent::__construct();
}
}
@etienne-snippet
etienne-snippet / gist:1993131
Created March 7, 2012 13:29
CODEIGNITER: controller
<?php
class Blog extends CI_Controller {
public function __construct()
{
parent::__construct();
// Your own constructor code
}
function index()
@etienne-snippet
etienne-snippet / gist:1993067
Created March 7, 2012 13:21
HTML: Html 5 template
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="">
<title></title>
<!-- INCLUDE CSS FILES -->
<link type="text/css" rel="stylesheet" href="css/style.css">