Start and current copyright year dates
<?php
// usage: place your start date into $start variable i.e. $start = '2008'
$start = '<<**SelectionInsertionPlaceholder**>>';
echo( ($start < date('Y') ? 'Copyright © ' . $start . ' - ' . date('Y') . ', all rights reserved' : 'Copyright © ' . $start . ', all rights reserved') );
?>
Added to PHP by Patrick Lefevre
IE Conditional Comments
<!--[if IE]>
<link rel="stylesheet" media="screen" type="text/css" href="<<**SelectionInsertionPlaceholder**>>" />
<![endif]-->
Added to HTML by Craig Hobson
Clearfix
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
Table HTML
<table id="<<**SelectionInsertionPlaceholder**>>">
<thead>
<tr>
<th scope="col" id=""></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
Mailto: link
<a href="mailto:<<**SelectionInsertionPlaceholder**>>"></a>
Added to HTML by Wavemaster
Open Blank Page (Valid XHTML)
<a onclick="window.open(this.href, '_blank'); return false;" href="http://www."></a>
Added to HTML by Steven Hambleton
Echo Server Year (Useful for Copyright messages)
<?php echo date('Y'); ?>
Added to PHP by Steven Hambleton