Skip to content

Instantly share code, notes, and snippets.

View oracle202's full-sized avatar

Anthony Rocco oracle202

View GitHub Profile
@oracle202
oracle202 / timothy
Created August 11, 2011 22:56
play by play
Started GET "/" for 127.0.0.1 at Thu Aug 11 18:55:01 -0400 2011
SQL (1.0ms) SELECT name
FROM sqlite_master
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
SQL (0.9ms) SELECT name
FROM sqlite_master
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
SQL (0.8ms) SELECT name
FROM sqlite_master
if (hasError == false) {
$.post(mailpath,
{ fromName: fromVal, emailTo: emailToVal, message: messageVal, javacheck: javacheckVal },
function (data){
$("#emailme").slideUp("normal", function() {
$("#form_status").html('<strong>Success!</strong> Your email has been sent.').show("slow");
window.setTimeout(function() {
$("#form_status").hide("slow");
$("#emailme").[0]reset();
$("#emailme").slideDown("normal");
<?php
# Change to your e-mail
$recip = "anthony@kilnlabs.com";
$from_header = "From: anthony@kilnlabs.com";
/**************************************************************************/
$contact_name = $_POST['fromName'];
$contact_email = $_POST['emailTo'];
$contact_message = $_POST['message'];