Skip to content

Instantly share code, notes, and snippets.

View sanjaybhowmick's full-sized avatar

Sanjay Bhowmick sanjaybhowmick

View GitHub Profile
@sanjaybhowmick
sanjaybhowmick / contact.html
Created September 9, 2015 18:13
Create a simple HTML contact form with Ajax & PHP
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type='text/javascript' src="js/validation.js"></script>
<div id='container'>
<form name="contactForm" id='contact_form' method="post" action='email.php'>
<h2>Ajax HTML Contact Form</h2>
<h3>After submission of the form the email will be sent to the email id you entered.</h3>
<p> Your Name:
<div id='name_error' class='error'><img src='images/error.png'>Please enter your name.</div>
<div>
<input type='text' name='name' id='name'>
@sanjaybhowmick
sanjaybhowmick / convert.php
Created September 9, 2015 17:22
Convert your MySQL database table to CSV format in PHP
<?php
$rsSearchResults = mysql_query("SELECT * FROM tablename order by id DESC") or die(mysql_error());
$out = '';
$fields = @mysql_list_fields('databasename','tablename');
$columns = @mysql_num_fields($fields);
// Put the name of all fields
for ($i = 0; $i < $columns; $i++)
{
$l=mysql_field_name($fields, $i);
$out .= '"'.$l.'",';
@sanjaybhowmick
sanjaybhowmick / index.html
Created September 9, 2015 17:11
Transitional mouse hover effect in CSS
<div id="effect">
<p><a href="#"><span>Normal text effect</span></a></p>
</div>
@sanjaybhowmick
sanjaybhowmick / functions.php
Created September 9, 2015 17:00
Show related posts on your WordPress blog for custom post type
<?php
//Register product categories
$labels = array(
'name' => _x( 'Product Categories', 'taxonomy general name' ),
'singular_name' => _x( 'Product Category', 'taxonomy singular name' ),
'search_items' => __( 'Search Product Categories' ),
'all_items' => __( 'All Product Categories' ),
'parent_item' => __( 'Parent Category' ),
'parent_item_colon' => __( 'Parent Category:' ),
'edit_item' => __( 'Edit Product Category' ),
@sanjaybhowmick
sanjaybhowmick / template.php
Created September 9, 2015 16:43
WordPress - show custom taxonomy term description
<?php
$taxonomy_term_description = term_description( '', get_query_var( 'taxonomy' ) );
if($taxonomy_term_description != '') : ?>
<div class="tag-desc"><?php echo $taxonomy_term_description; ?></div>
<?php endif; ?>
@sanjaybhowmick
sanjaybhowmick / location.html
Created September 9, 2015 09:51
Location on the Google Map
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Map</title>
<script src="http://maps.google.com/maps?file=api&v=2&sensor=false&key=Your API Key" type="text/javascript"></script>
</head>
<body onunload="GUnload()">
<div id="map" style="width: 550px; height: 450px"></div>
<script type="text/javascript">
//<![CDATA[
@sanjaybhowmick
sanjaybhowmick / print.html
Last active May 9, 2016 17:18
Printer Friendly Version Of Your Web Page Content
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Clinet side printer version</title>
<style type="text/css">
.style1 {color: #0033FF}
.style3 {
font-size: 13px;
font-family: "Times New Roman", Times, serif;
}
@sanjaybhowmick
sanjaybhowmick / drop-down.css
Created September 9, 2015 09:31
Wordpress CSS based drop-down menu now works on IE6
/*jquerycssmenu_start*/
#nav_container{
background:url(images/nav_bg.jpg) repeat-x;
width:1000px;
}
.jquerycssmenu{
width:auto;
}
.jquerycssmenu ul{
margin: 0;
@sanjaybhowmick
sanjaybhowmick / functions.php
Created September 9, 2015 09:22
Simple WordPress Breadcrumbs
<?php
function wordpress_breadcrumbs() {
$delimiter = '&raquo;';
$name = 'Home'; //text for the 'Home' link
$currentBefore = '<span class="current">';
$currentAfter = '</span>';
if ( !is_home() && !is_front_page() || is_paged() ) {
echo '<div id="crumbs">';
global $post;
$home = get_bloginfo('url');
@sanjaybhowmick
sanjaybhowmick / form.css
Created September 9, 2015 09:06
Style your web form with CSS
label
{
width: 15em;
float: left;
text-align: left;
margin-right: 0.5em;
display: block;
color: #990000;
font-weight: bold;
font-family: Verdana, Arial, Helvetica, sans-serif;