This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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']; |