August 16th in Internet by pbu .

Shrink High Resolution Photo to small size for Upload

Shrink High Resolution Photo to small size for Upload

Nowadays sharing photos online has become so common among many people and most photos come out of camera device have huge file sizes because of more resolution and megapixel. The more the resolution and megapixel the larger the filesize. The fact is …

August 14th in Games by pbu .

Ah! Just waiting to buy these forthcoming PS3 games!

Great PS3 games will be released in later 09/10

There are so many rumours among gamers that some of the great PS3 games will be coming out in later 2009 and 2010. i just cant resist my temptation hearing these great ps3 games will be released in later part of 2009/2010. …

August 14th in Games by pbu .

PS3 games with GREAT Graphics

Which PS3 games are with GREAT Graphics?

I have always loved games with SUPER graphics be in PS3 or any other platform. I have seen so many games in the past 10 years in the gaming industry and i can point out that there are only very few games in PS3 …

July 28th in PHP Scripts by pbu .

How to filter & escape data from Injection attacks in PHP!

Ask any security expert! He will say you should always filter POST and GET data by escaping them before insertion into the database. In that way your scripts can be safe from SQL injection attacks.

Many php programmers are so lazy and just directly insert the POST data without filtering it …

July 27th in Linux/Unix, PHP Scripts by pbu .

Using htaccess to redirect domain without http://

Using htaccess to redirect domain without http

A very simple problem made me to sweat a lot. I have a site where users post their website link and most of them are so dumb and just wont put http:// in their domain and they submit just like www.domain.com.

If the link goes …

July 17th in Games by pbu .

Killing Goliath with Missiles in Resistance 2

Killing Goliath with Missiles in Resistance 2

I was stuck at this part of game where i had to fire missiles at the exhaust of Goliath and no matter how many times i fire the missile i am struck by rapid firing of rockets. I had tried this over hundred times …

July 15th in Javascript by pbu .

Quick & Easy Form Validation Tutorial with JQuery

Quick & Easy Form Validation with JQuery

Form validation has become never been easy like before. If you havent heard of jQuery, then its time to get know now. Jquery is an open source set of javascript library, that brings user interactivity in web applications so easy even for a beginner …

July 13th in Javascript by pbu .

how to strip special characters with jQuery form validation!

JQuery form validation – How to remove special characters!

i was using a jquery form validation plugin and it was so easy in validating a form. I was stuck in a scenario where i want users to register userID and i dont want them to enter special characters like dots …

July 12th in Javascript by pbu .

how to reload/refresh a page with jquery?

how to reload/refresh a page with jquery?

Its very simple.

Lets say you have a button refresh all, which basically does reloading the page when you click it. Here is the code

// use location.reload() in jquery to reload a page within onclick
<input name="doRefresh" type="button" id="doRefresh"
value="Refresh All" onClick="location.reload();">

July 12th in Javascript by pbu .

Fix-> JQuery onclick browser jumps to top of page!

JQuery onclick jumps to top of page

i had an issue with jquery code where i have a html link doing specific tasks for onclick event. Since the appear on bottom of my page, when i click on the link the browser jumps to top of the page every time i …