When the application are bigger and using many resources then obviously application response time would be too more and end user can wait for log time to get response from application, that is not good for end user as well as for application.
Here we will discussed some points, how to improve web application performance, There are some simple things which must be in developer mind , when he is developing application.
Using the below action we can have significant positive impact on application performance. However, these are very strong point to improve application performance but These can also be a drawback depending on how your application is built.
Continue reading …
How To Parse STRING In PHP
In pervious tutorial I was told you how to parse URL, Now I want to share next steps, how to parse query string in PHP. In Previous tutorial you have below Array.
1 2 3 4 5 6 7 8 9 10 11 12 13
Array
(
[scheme] => https
[host] => graph.facebook.com
[path] => /xxxxxx/feed
[query] => limit=400&until=1353532418
)
How To Parse URL In PHP
Hi, In this tutorial I will tell you how to parse URL in PHP, Normally we are create an custom function to explode URL into different arrays.PHP have built in PHP function parse_url () to parse URL.
Below are simple example to parse URL
1 2 3 4 5
$nexUrl = 'https://graph.facebook.com/xxxxxx/feed?limit=400&until=1353532418';
$parseURL = parse_url($nexUrl);
print_r($parseURL);
Result:

query
How To Create Generalized Function For Jquery Template
Hi, In previous tutorial I was told you how to use jquery template . In this tutorial we will learn how to create a generalized function to handle all template request in jquery.Normally we are creating each function to handle for each request, but it’s not good practice for developer, Always our first aim to write an optimize code for application.
In this tutorial I will tell you how to write an optimize single jQuery function which will handle all your Jquery template request. We just pass parameters array in this function and get result.
Continue reading …
How to Integrate Bootsrap Model Box with Jquery Template
In This post I will tell you how to add jquery template in bootsrtap Model box.Normally we are using inline code to add model box functionality but now its old technique, now everything is changing, we are using now bootstrap model box and Jquery template plugin.We are not including library file of model box and jquery template , I understand you have to basic knowledge of Jquery template and Bootstrap model box.
Following are simple steps to integrate model box with jquery template.
Objective of Example: we are creating detail of attributes based on attribute id.
Continue reading …
How to Add Search Functionality in Dropdown List with Jquery Plugin
In this tutorial i will let you know how to create dropdown list with Rich UI. Normally HTML provide simple SELECT element to create dropdown list.
In this tutorial you will learn how to create dropdown list with search functionality with help of excellent ‘chosen’ jquery plugin, you can download Here. Continue reading …
Simple Jquery Template Tutorial
In this tutorial I will described how to create simple template with help of jQuery template plugin.Jquery templating is very exciting and innovation tool of jQuery lovers. jQuery template plugin works only Json object.
Below are simple steps to create simple template.
Step 1:Add script source in head tag of file.
1 2 3 4 5 6 7
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
</head>
How To Merge Trunk with Branch in SVN
In This tutorial I will tell you how to merge trunk to specific branch in SVN, It is very easy and two step simple process to merge any branch.
There are following step to merge trunk to branch:
Step 1: Open Trunk folder and take the merge option
Step 2: Select ‘merge range of revisions’ option

Continue reading …
Simple Perl Tutorial with MySQL
Hi In this tutorial i will describe how to create connection string and with help of this how to insert record in database using Perl script. Below script use mysql as database to store data and Perl dbi module use to make connection with mysql.
This is very simple tutorial to learn Perl script and i hope it will very useful to Perl beginner developer. Below is simple script to insert record in database.
Continue reading …
Faceboook Rolling Out Country Level Insights Data Via Graph API and FQL
facebook announced he is starting to roll out like count and people talking about this (PTAT) metrics for all Pages via the Graph API and FQL.
As he announced in October, this enables marketers to benchmark their own fans and PTAT in a given country against
other Pages and monitor how country-level like counts change over time. For example,
now a European car company can see how many people are talking about their brand versus a competitor’s brand on a
country-by-country basis. You’ll be able to access this via the new ‘global_brand_like_count’
and ‘global_brand_talking_about_count’ fields on the Insights object.