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="iframe.php" target="my-iframe" method="post"> | |
<label for="text">Some text:</label> | |
<input type="text" name="text" id="text"> | |
<input type="submit" value="post"> | |
</form> | |
<iframe name="my-iframe" src="iframe.php"></iframe> |
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 method="post" action="upload.php" enctype="multipart/form-data"> | |
<input name='uploads[]' type="file" multiple> | |
<input type="submit" value="Send"> | |
</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
<meta http-equiv="refresh" content="5;url=http://example.com/" /> |
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> |
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
<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
<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
<?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
<?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
<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> |