Sometimes we have to hide referer value to landing page. This is also called Link Masking or Link cloaking. Suppose we have Page A & a page B. Page A contains a link to page B. When we click on the link Page B has knowledge that from where user is coming. But if want [...]
Archive for the ‘Tutorials’ Category
How to Find & Replace String in MySQL
October 20th, 2011
admin To find a string in a certain field and replace it with another string: update [table_name] set [field_name] = replace([field_name],’[string_to_find]‘,’[string_to_replace]‘); like update user set name = replace(name,’Dr.’,’Mr.’); If you like the post & want to get more then Subscribe our blog posts. Subscribe SunwareTech.net RSS Feed • Facebook • Twitter • Email Bookmark on Delicious [...]
Login with Google Account, Facebook Account or Twitter Account Script Code
July 19th, 2011
admin Now you can make your website more social network friendly with login facility with Social Network gaints Facebook, Twitter using oAuth support & Google with OpenID support. Now website user don’t have to fill the long registration form & can simply login with already registered account in Google, Facebook or Twitter. Ravi Tamada in his [...]
Is Your Clients’ Website Secure and Safe from Hackers?
July 14th, 2011
admin With Internet boom most of company already shift their business to online. Internet provides same business opportunities to both large and small business owners. Unfortunately this growth also attract Hackers to misuse the company data & can easily destroy their online branding. If the clients’ site hacked, image of software company is also tarnished. I [...]
PHP Object Relational Mapping (ORM) Tools List
March 30th, 2011
admin Object Relational Mapping (ORM) allows manipulation and control of data within a database as though it was a PHP object. Once you define the relationships ORM allows you to pull data from your database, manipulate the data in any way you like and then save the result back to the database without the use of [...]
Text area word counter using jQuery
March 29th, 2011
admin Use can use below code to count the words(not words) in a textarea. This is very useful when you put a words limit in text area. User can see how much word are left to write. Total word Count : 0 If you like the post & want to get more then Subscribe our blog [...]
jQuery Basics for beginners
March 25th, 2011
admin jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write Javascript. Its very lightweight, CSS3 compliant, Cross browser supported script. If its still confusing for you, you can learn the basics of [...]
Amazing Jquery Examples – 9lessons
March 23rd, 2011
admin 9lessons.info Blog maintained by Srinivas Tamada, full of useful information related to jQuery javascript library, Ajax, Javascript, CSS, PHP, Mysql, Java, Open source Technologies, APIs, Programming, Technology & great tips. This blog is very good source of information for beginners as well as for advanced, specially in case of jQuery tutorials. The best thing [...]
Mysql Left Join in Three tables
March 15th, 2011
admin Lets assume we have to fetch data from three table a users (PK user_id) b departments c user_details department & user_details table have users department & user detailed information respectively & inter related with user_id select a.id, b.dept, c.project from users a left join departments b on a.user_id = b.user_id left join user_details c on [...]
JSON Tutorials
March 13th, 2011
admin JSON (JavaScript Object Notation), is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is used by many other technologies like PHP and Java for data interchange format over the Internet. What is JSON? JSON is ultra-weight data interchange data format [...]




Posted in
Tags: