コード例 #1
0
ファイル: index.php プロジェクト: nicksheffield/Todo-Lite
<?php

/*
	By Nick Sheffield
	nick@nicksheffield.com
*/
require_once 'classes/sqlite.php';
require_once 'classes/security.php';
require_once 'classes/template.php';
$database = isset($_GET['db']) ? $_GET['db'] : 'todo';
$db = new sqlite('db/' . $database);
$posts = $db->get('id, content, date, complete');
$db->table('title');
$title = $db->get('name');
?>
<!DOCTYPE html>	
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
	<meta name="viewport" content="width=device-width, initial-scale=1">

	<title><?php 
echo $title[0]['name'];
?>
</title>
	
	<link rel="shortcut icon" href="assets/images/favicon.ico" />
	<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,500|Roboto+Slab:400,300,100|Bad+Script|Source+Sans+Pro:200,300,400' rel='stylesheet' type='text/css'>
	<link rel="stylesheet" href="assets/css/style.css" />
</head>