July 28th in PHP Scripts by pbu .
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
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
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 .
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 with just few lines of code.
In …
July 13th in Javascript by pbu .
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?
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();">
Share:StumbleUponPrint
July 12th in Javascript by pbu .
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 …
July 12th in Javascript by pbu .
how to call a php script from javascript?
I have always wondered how to call a php script and send GET data from javascript code. It was very important for me as in many projects i have worked i never wanted to header redirect to original php page after delete, edit …
July 9th in Games by pbu .
Wheelman is another GTA like game!
Wheelman ROCKS! It is high flying, action packed GTA like racing game and i can say WOW! The game has great graphics and creators of the game brought in such a innovation in action racing like melee, air jacking and precision aiming. Awesome! I …
July 6th in PHP Scripts by pbu .
PHP script using mail vs smtp method for emailing
I have often confused about the which method to use for sending mails with a php script. I have used php mail() function in many projects and it is often slow, which is because this function opens sockets everytime you call this …