Html Cheat Sheet

File upload form:

<form action="upload_file.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" id="file"><br>
</form>

How to suppress IE image toolbar?

Some version of IE displays a toolbar on top of images. If you do not want this toolbar to be displayed on top of your images, use:

<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="imagetoolbar" content="false" />
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License