<!DOCTYPE HTML> <html> <body> <audio src=”horse.ogg” autoplay=”autoplay” loop=”loop” controls=”controls” > Your browser does not support the audio element. </audio> </body> </html> http://www.w3schools.com/html5/tag_audio.asp
Category Archives: Programming
PHP datetime Format
The format of the outputted date string . See the formatting options below. There are also several predefined date constants that may be used instead, so for example DATE_RSS contains the format string ‘D, d M Y H:i:s’.
15 Calendar & Time Script With Ajax and Javascript
Ajax Calendar help users to choose one or more dates from a graphical calendar presented in a month interface. Flat Calendar Style, Pop Calendar Style, Fade Effect Calendar Style and more Style make great looking improvement to the user interface of your web application more http://php-ajax-code.blogspot.com/2007/07/15-calendar-time-script-with-ajax-and.html
SIFR flash var wmode Transparency
//<![CDATA[ sIFR.replaceElement(named({sSelector:”h2″, sFlashSrc:”Scripts/sifr/cdl.swf”, sColor:”#a28c74″, sLinkColor:”#333333″, sHoverColor:”#333333″, sWmode:”transparent” })); //]]>
php number_format Decimal
<?php $number = 1234.56; // english notation (default) $english_format_number = number_format($number); // 1,235 // French notation $nombre_format_francais = number_format($number, 2, ‘,’, ‘ ‘); // 1 234,56 $number = 1234.5678; // english notation without thousands seperator $english_format_number = number_format($number, 2, ‘.’, ”); // 1234.57 ?>
3 Ways to Highlight Links to the Current Page
Solution #1: HTML/CSS only With this solution, all you have to do is add in some extra classes to your HTML and use CSS to style them. Each page has a class on the body tag that identifies it: