Skip to content

Instantly share code, notes, and snippets.

View sanjaybhowmick's full-sized avatar

Sanjay Bhowmick sanjaybhowmick

View GitHub Profile
@sanjaybhowmick
sanjaybhowmick / thumbnail.php
Created September 9, 2015 07:18
Thumbnail Creation with PHP
<?php
// Maximum size of the uploaded image
define('MAX_SIZE','100');
// Width & Height of the thumbnail in pixels
define('WIDTH','150');
define('HEIGHT','100');
// Thumbnail creation function
function makeThumb($img_name,$file_name,$new_width,$new_height)
{
// Get the extension of the image
@sanjaybhowmick
sanjaybhowmick / db.sql
Created September 9, 2015 08:44
Display data horizontally from MySQL table
DROP TABLE IF EXISTS `member_table`;
CREATE TABLE `member_table` (
`id` tinyint(4) NOT NULL AUTO_INCREMENT,
`member_name` varchar(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of member_table
-- ----------------------------
@sanjaybhowmick
sanjaybhowmick / download.php
Created September 9, 2015 08:57
Download file script in PHP
<?php
$filename = $_GET['filename'];
// Modify this line to indicate the location of the files you want people to be able to download
// This path must not contain a trailing slash. ie. /temp/files/download
$download_path = "";
// Make sure we can't download files above the current directory location.
if(eregi("..", $filename)) die("I'm sorry, you may not download that file.");
$file = str_replace("..", "", $filename);
// Make sure we can't download .ht control files.
if(eregi(".ht.+", $filename)) die("I'm sorry, you may not download that file.");
@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;
@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 / 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 / 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 / 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 / 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 / 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' ),