25 Dec 2014

Download dummy post content for WP CMS

A link to download dummy post content of wordpress CMS http://wpcandy.s3.amazonaws.com/resources/postsxml.zip

6 Dec 2014

jQuery dropdown code

http://www.jqueryscript.net/form/jQuery-International-Telephone-Input-With-Flags-Dial-Codes.html

1 Sept 2014

Give English Quiz Exams

Give English Quiz Exams- http://www.englishleap.com/exercises/verbs-exercises

31 Aug 2014

See Your Adjustment On Work Stations

See Your Adjustment On Work Stations- http://www.worksafebc.com/publications/health_and_safety/by_topic/assets/pdf/comptr_wrkstn.pdf

Best Utility Website to See Using System IP & Location

Best Utility Website to See Using System IP & Location- http://aruljohn.com/

20 Aug 2014

Javascript Timer

Javascript Timer- http://www.aspdotnet-suresh.com/2013/02/start-and-stop-timer-in-javascript.html

19 Aug 2014

smart way to increase traffic

smart way to increase traffic -http://traffboost.net/

18 Aug 2014

CMS Panel -

CMS Panel- https://teamtreehouse.com/subscribe/plans?trial=yes

17 Aug 2014

Datetimepicker Plugin

Special DateTimepicker- http://www.rainforestnet.com/datetimepicker/datetimepicker.htm

16 Aug 2014

tooltip by name chilltip

http://www.chillwebdesigns.co.uk/chilltip

15 Aug 2014

Great CMS link- http://www.aspnetpower.com/elsphpwebquiz/index.php?module=online_demo

Awesome tooltip

See this link- http://iamceege.github.io/tooltipster/

26 Jul 2014

DataGrid Tutorial-

DataGrid Tutorial- http://www.jeasyui.com/tutorial/datagrid/datagrid8.php

jquery Sortable helper function

jquery Sortable helper function- http://edusagar.com/articles/view/57/Sorting-table-rows-using-Jquery-UI-sortable

25 Jul 2014

Form Validation demo

Form Validation demo link- http://www.jeasyui.com/tutorial/form/form3_demo.html

19 Jun 2014

Carosels demo site

Carousels Demmo Site- http://coolcarousels.frebsite.nl/

tabbed pane menu

tabbed pane menu list- http://www.hongkiat.com/blog/50-nice-clean-css-tab-based-navigation-scripts/

13 May 2014

Convert font and generate font face

http://everythingfonts.com/font-face#

Custom code to share urls & image at social media

http://www.walkswithme.net/custom-social-share-buttons-integration

11 May 2014

Listen bollywood music online

http://mio.to/#/
http://mio.to/genre/20-Hindi_Compilations/#/genre/20-Hindi_Compilations/

29 Apr 2014

Useful php codes

15 Very Useful PHP Code http://viralpatel.net/blogs/15-very-useful-php-code-snippets-for-php-developers/

28 Apr 2014

wordpress password protected page solution

http://wordpress.stackexchange.com/questions/104911/give-visitor-access-to-password-protected-page-post-via-external-script

<form action="<?php echo bloginfo('template_directory'); ?>/pp-redirect.php" method="post">
Event: <input name="event" type="text" size="25" /><br />
Passwort: <input name="post_password" type="password" size="25" /><br />
<input name="submit" type="submit" value="Los" />
</form>
pp-redirect.php
<?php
/** Make sure that the WordPress bootstrap has run before continuing. */
require( dirname(__FILE__) . './../../../wp-load.php');
global $wp_hasher;
if ( empty( $wp_hasher ) ) {
    require_once( ABSPATH . 'wp-includes/class-phpass.php' );
    $wp_hasher = new PasswordHash(8, true);
}
if ( get_magic_quotes_gpc() )
    $_POST['post_password'] = stripslashes($_POST['post_password']);

// Expires when the browser shuts down
setcookie( 'wp-postpass_' . COOKIEHASH, $wp_hasher->HashPassword( stripslashes( $_POST['post_password'] ) ), 0, COOKIEPATH );

wp_safe_redirect( get_bloginfo('url') . "/" . $_POST['event'] );

31 Mar 2014

Proper way to store date and time values in MySQL -
 http://www.webdevelopersdiary.com/1/post/2012/06/good-to-know-how-to-properly-store-date-and-time-values-in-mysql.html