HTML CodeSnippets
Simply type php and press tab to get a full PHP block.
<?php ?>
Add a complete JavaScript block by simply typing "script" and pressing the Tab key.
<script type="text/javascript"> </script>
Add a complete CSS style block by simply typing "style" and pressing the Tab key.
<style type="text/css"> </style>
Add a stylesheet reference link.
<link rel="stylesheet" type="text/css" href="myfile.css" />
JS Link
<script src="my_javascript_file.js" type="text/javascript"></script>
A form, with the method defined by the user, and a default action set to the PHP_SELF from the $_SERVER array.
<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>"> </form>