Home » Archive

Uncategorized »

[17 Jan 2012 | View Comments | 2 views]

If you are using some WYSIWYG Editor and wonder how data in database if full of  \\\\"\\\\   Mess then following code will be helpful to you. Add this code on the top of the script or in any common file, which is include on top of  the code.
// Turn off magic_quotes_runtime
if (get_magic_quotes_runtime())
set_magic_quotes_runtime(0);
if (get_magic_quotes_gpc()) {
function stripslashes_gpc(&$value)
{
$value = stripslashes($value);
}
array_walk_recursive($_GET, ’stripslashes_gpc’);
array_walk_recursive($_POST, ’stripslashes_gpc’);
array_walk_recursive($_COOKIE, ’stripslashes_gpc’);
array_walk_recursive($_REQUEST, ’stripslashes_gpc’);
}

Headline, Uncategorized, featured »

[5 Feb 2011 | View Comments | 310 views]
Me vs Vodafone Customer Care

I bought new Vodafone sim about 1 month ago. I selected vodafone because of it’s good publicity in television. Everything was going fine for first 7 days. On 10th January 2010 I recharged my phone with the amount of 350.00 from website. In vodafone website the mentioned on 350.00 INR recharge I will get talktime of 315.00 INR. Following is the print screen.

I immidiately called customer care and talked her about my problem. She checked and replied that you got INR 177.32. Customer care executive was in very hurry and …

Headline, featured »

[18 Oct 2010 | View Comments | 436 views]
Dream comes true, But still have to achieve a lot

Update:

From this new year we are diving fully in to the business. Now it’s time to do something big. So Elrada office is now shifting from Lucknow to the City Beautiful Chandigarh from 1st January. I will post pics very soon ;)

http://elrada.com

Emails, My Life, featured »

[8 Jan 2010 | View Comments | 315 views]
A brilliant interview

Some, rather most organizations reject his CV today because he has changed jobs frequently (10 in 14 years). My friend, the “job hopper” (referred here as Mr. JH), does not mind it. well he does not need to mind it at all. Having worked full-time with 10 employer companies in just 14 years gives Mr. JH the relaxing edge that most of the “company loyal” employees are struggling for today.

Headline »

[15 Dec 2009 | View Comments | 1,046 views]
How to download unlimited mp3 files from eSnips for free

Yes!! you can download eSnips files without even create account in eSnips. Follow these steps to download files. Follow these simple steps and download music for free.

Uncategorized »

[30 Nov 2009 | View Comments | 658 views]

Recently I faces a problem in admin module,  developed by some programmer that when I submit add entry button it adds two records but when I submit for Firefox, I was working  fine.
After 3 hour of mess I found error, In IE8 you have to return false, if you are submitting form through javascript. Here is example
<form name=”frm” onsubmit=”return chkForm();”>
function chkForm()
{
//Variuos checks
document.frm1.submit();
return false;
}

Uncategorized »

[23 Oct 2009 | View Comments | 513 views]
MySql Triggers: How to

MySql 5.0 come up with many great features.  One most important feature is trigger. Triggere support is in initial phase but, will be extended in future release.  here I am going to present a brief easy to understand tutorial for mysql triggers.
Triggers are MySql statements, commends which are executed on a definded event. These events may be (INSERT, UPDATE, DELETE). So at the top level we can categorize triggers in 3 categories
1. Create
2. Update
3. Delete
The basic syntax of trigger definition is
CREATE
[DEFINER = { user | CURRENT_USER …

Latest News, Linux, PHP, Software, featured »

[21 Aug 2009 | View Comments | 2,889 views]
Moving Magento site from development server to live server

Recently I faced problem to move magento site from local (LAMP) environment to web server. I am posting steps to upload site on server.

1. Make tar / zip of code.

$ tar -cvvf site.tar /opt/lampp/magento/

2. Take backup of database through phpmyadmin. Check “Disable foreign key checks” to avoid error in restore process.

Headline, My Life, Nokia 5800, Symbian »

[20 Aug 2009 | View Comments | 1,184 views]
GPS Navigation in India

Google Latitude is free and have good coverage in India. I am using this for Chandigarh. It has My Location, Driving direction support for Chandigarh.

You can download it from here : http://www.google.com/intl/en_us/latitude/intro.html

The best feature of latitude is, track your friend’s locaiton on web (iGoogle). You can select your friends to view your current location. This application automatically activate backgroung services which update your location automatically on server.

PHP, Software »

[20 Aug 2009 | View Comments | 50 views]

Regular expressions are a very useful tool for developers. They allow to find, identify or replace text, words or any kind of characters. In this article, I have compiled 15+ extremely useful regular expressions that any web developer should have in his toolkit.

PHP, Software, featured »

[20 Aug 2009 | View Comments | 195 views]
Path variables in PHP

Many of you develop php applications for multiple server environment. Webserver environment may be different, have different directory structure, so you have to use paths very carefully. For example in file upload script, you manually write absolute path of image directory, the application may not work on other server. To avoid this you should use inbuilt php path variables. I am posting summary of all php related path variables.

Headline, Latest News, Uncategorized »

[14 Aug 2009 | View Comments | 1,966 views]
Swine flue GOVERNMENT AUTHORIZED HOSPITALS – India

As you know, swine flue is now a big problem for people like us who have to visit crowdy areas every day and come in touch of many peoples. If you find following swine flue symptoms, go to one of these hospital immediately!

Headline »

[11 Aug 2009 | View Comments | 5,807 views]
Happy B’day to Meeeeeeeeee

Finally, the gr88 day has gone,, we enjoyed a lot and made a lot of fun.. This was really one of greatest b’day of my life.. Thanks to all friends… and thanks for nice gifts ;)

Emails, Headline, Uncategorized »

[7 Aug 2009 | View Comments | 22 views]

Superb video..

Latest News »

[4 Aug 2009 | View Comments | 19 views]

The Reserve Bank of India (RBI) has mandated that from 1st Aug 2009 all online credit card transactions require an extra level of verification. Your credit card issuing banks are therefore, implementing a “Verified by VISA” or “MasterCard SecureCode” password. You will need this password to continue transacting online from 1st Aug 2009.
What is the “Verified by VISA”/”MasterCard SecureCode” password?
This is the password that your credit card issuing Bank provides. This password is the additional layer of security for all your online transactions.
Benefits of “Verified by VISA”/”MasterCard SecureCode” password …