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
//Display ALL errors | |
error_reporting(E_ALL); | |
ini_set("display_errors", 1); | |
//only fatal and warnings | |
error_reporting(E_ALL ^ E_NOTICE); | |
//or use this: http://www.codeblog.ch/2012/07/improved-php-error-reporting/ |
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
.round { | |
-webkit-border-radius: 12px; | |
border-radius: 12px; | |
-moz-background-clip: padding; | |
-webkit-background-clip: padding-box; | |
background-clip: padding-box; | |
} |
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
.opacity { | |
opacity: 0.9; | |
filter: alpha(opacity=90); | |
} |
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
<table summary="text"> | |
<caption>Text</caption> | |
<thead> | |
<tr> | |
<th></th> | |
</tr> | |
</thead> | |
<tfoot> | |
<tr> | |
<td></td> |
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 | |
require_once('swift/lib/swift_required.php'); | |
$email = $_POST['email']; | |
$subject = "my subject"; | |
$user_message = "<b>message body</b>"; | |
$mailer = new Swift_Mailer(new Swift_MailTransport()); | |
$message = Swift_Message::newInstance(); | |
$message->setSubject($subject); |
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
C:\Users\[Your Name]\AppData\Local\Google\Chrome\Application>chrome.exe -disable-web-security --allow-file-access-from-files |