Get out of Diggbar Framing

Javascript approach

http://en.wikipedia.org/wiki/Framekiller has it

PHP approach

<?php
if (preg_match('#http://digg.com/\w{1,8}/*(\?.*)?$#',
                            $_SERVER['HTTP_REFERER']) ) {
echo "<p>Special message for Digg users here.</p>";
exit;
}
?>