hCard (Microformats)
<div id="hcard-Robert-Nobody" class="vcard">
<strong class="fn">Robert Nobody</strong>
<div class="org">The Company Inc.</div>
<a class="email" href="mailto:mail@thecompany.com">mail@thecompany.com</a>
<div class="adr">
<span class="street-address">1234 Example Av.</span>
<span class="locality">Ghosttown</span>,
<span class="region">CA</span>,
<span class="postal-code">12345</span>
<span class="country-name">U.S.A.</span>
</div>
<div class="tel">+001 - 1234 - 456 789</div>
</div>
Added to HTML by Thilo Thamm
Centre div (using negative margins)
div {
position: absolute;
left: 50%;
width: 500px;
margin-left: -250px; /*half the width of the div*/
}
Added to CSS by Matthew Hunt
Border Radius
{
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border:1px solid #fff;
background:#fff;
}
Added to CSS by Matthew Hunt
PHP function: Javascript alert
function alert($msg) {
$alert = "<script type='text/javascript'>";
$alert .= "alert('".$msg."')";
$alert .= "</script>";
print($alert);
}
Echo Javascript
echo '<script type="text/javascript">\n';
echo '<<**SelectionInsertionPlaceholder**>>\n';
echo '</script>\n';
PHP: Error reporting
ini_set('display_errors', 1);
ini_set('log_errors', 1);
ini_set('error_log', dirname(__FILE__) . '/error_log.txt');
error_reporting(E_ALL);
Link with title
<a href="#" title=""><<**SelectionInsertionPlaceholder**>></a>
Added to HTML by Aled Morris Brown