This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<object type="application/x-shockwave-flash" | |
data="your-flash-file.swf" | |
width="0" height="0"> | |
<param name="movie" value="your-flash-file.swf" /> | |
<param name="quality" value="high"/> | |
</object> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" | |
codebase="http://www.apple.com/qtactivex/qtplugin.cab" | |
width="200" height="16"> | |
<param name="src" value="movie.mov" /> | |
<param name="autoplay" value="true" /> | |
<param name="pluginspage" value="http://www.apple.com/quicktime/download/" /> | |
<param name="controller" value="true" /> | |
<!--[if !IE]> <--> | |
<object data="movie.mov" width="200" height="16" type="video/quicktime"> | |
<param name="pluginurl" value="http://www.apple.com/quicktime/download/" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<object type="video/x-ms-wmv" | |
data="movie.wmv" | |
width="320" height="260"> | |
<param name="src" | |
value="movie.wmv" /> | |
<param name="autostart" value="true" /> | |
<param name="controller" value="true" /> | |
</object> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function htmlDropdownMonthSelect() { | |
$monthSelectElement = ''; | |
for ($i = 0; $i <= 12; ++$i) { | |
$time = strtotime(sprintf('-%d months', $i)); | |
$value = date('Y-m', $time); | |
$label = strftime('%B', $time); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function htmlDropdownYearSelect() { | |
$yearSelectElement = ''; | |
for ($i = date("Y"); $i >= (date("Y")-100); $i--) { | |
$yearSelectElement .= '<option value="' . $i . '">' . $i . '</option>'; | |
} | |
return ' | |
<select id="year" name="year"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="http://maps.google.com/maps" method="get" target="_blank"> | |
<label for="saddr">Enter your location</label> | |
<input type="text" name="saddr" /> | |
<input type="hidden" name="daddr" value="Düsseldorfer Straße 90, 40545 Düsseldorf" /> | |
<input type="submit" value="get my way to work ;)" /> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="tel:1-408-555-5555">1-408-555-5555</a> | |
<a href="sms:1-408-555-1212">New SMS Message</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Basic --> | |
<a href="mailto:[email protected]">Email Us</a> | |
<!-- Add a Subject --> | |
<a href="mailto:[email protected]?subject=Mail from Our Site">Email Us</a> | |
<!-- Add a CC and BCC --> | |
<a href="mailto:[email protected][email protected], [email protected], [email protected]&[email protected]&subject=Big%20News">Email Us</a> | |
<!-- Add Body Text --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style>*{position:relative}</style><table><input></table> |