Skip to content

Instantly share code, notes, and snippets.

View Jerementor's full-sized avatar
🎯
Focusing

Jeremy Alexander Jerementor

🎯
Focusing
View GitHub Profile
@hcmn
hcmn / todo.php
Created September 24, 2012 00:38
PHP: very simple to-do list
<?php
// Database Constants
define("DB_SERVER", "127.0.0.1");
define("DB_USER", "root");
define("DB_PASS", "happy");
define("DB_NAME", "folio");
// 1. Create a database connection
$connection = mysql_connect(DB_SERVER, DB_USER, DB_PASS);
if ( !$connection ) {