HTML5 is awesome, no question. Here’s how to get older versions of Internet Explorer to play nice with it. Use HTML Shim. <!–[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]–> To learn more about HTML shim, go here HTML shim
Sick of that blue or purple box around your linked images? Here’s how to kill that stubborn thing. Simply place this bit of code in your CSS file or inside tags inside the head tags on your page. This applies the transparent “color” to all the states of a link, visited is usually purple, hover [...]
The HTML helper is pretty useful, here’s how you write a link in a view file: <?php echo $html->link(’click me’, array( ‘controller’=>’users’, ‘action’=>’index’ ) ); ?> The parameters in this are: title (what you actually click on) link location array(controller, action, id (if needed for edit)) (optional) attributes array