10 latest CodeSnippets

Add snippet
Language:   CSharp  CSS  HTML  JScript  Perl  PHP  Python  SQL  VBDotNet  VBScript  XML  
CodeSnippetForm, with PHP self action
A form, with the method defined by the user, and a default action set to the PHP_SELF from the $_SERVER array.
Download snippetDownload    Snippet exampleExample
<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">

</form>


CodeSnippetJS Link
JS Link
Download snippetDownload    Snippet exampleExample
<script src="my_javascript_file.js" type="text/javascript"></script>


CodeSnippetCSS link
Add a stylesheet reference link.
Download snippetDownload    Snippet exampleExample
<link rel="stylesheet" type="text/css" href="myfile.css" />


CodeSnippetStyle block
Add a complete CSS style block by simply typing "style" and pressing the Tab key.
Download snippetDownload    Snippet exampleExample
<style type="text/css">

</style>


CodeSnippetJavaScript block
Add a complete JavaScript block by simply typing "script" and pressing the Tab key.
Download snippetDownload    Snippet exampleExample
<script type="text/javascript">

</script>


CodeSnippetPHP block
Simply type php and press tab to get a full PHP block.
Download snippetDownload    Snippet exampleExample
<?php

?>