Most Popular
80+ AJAX-Solutions For Professional Coding
CodeIgniter From Scratch: Day 1
10 Free CSS and Javascript Calendars
Website is a Part of Online Branding
Google Plus 1 vs. Facebook Like
Settling Deal with Open Source Development Re...
Tasty Evolution of Android Versions (Infograp...
Equal Height Columns with Cross-Browser CSS a...
Professional SEO helps your brand go globall...
Jump in on the bandwagon of iPhone applicatio...
Tag Clouds
Validaton Rules
Form validation with jQuery from scratch
Written by admin on August 04, 2010
The HTML form
There’s a pretty diverse opinion on how this should be done exactly, but we’ll make the code flexible enough to handle different markup styles.
<form>
<fieldset>
<legend>Legend Name</legend>
<div>
<label for="name">Name</label>
<input type="text" id="name" name="name">
</div>
</fieldset>
</form>
This is how I markup my forms. Trying to keep it as ...
No Comments
Encryption rules
Written by admin on June 25, 2010
Encryption needs are very common among all the projects.
Please follow the encryption rules to save every kind of critical data within your web application.
All Passwords stored in the database must be encrypted.
Querystring must be encrypted. Please use fake variables and values to make your querystring disguised and difficult to be guessed easily. for example if user id has to be passed for information in querystring the wrong way that is being used in most of the sites is
http://www.mysite.com?userid=12
Its very easy to break this and anyone can put any number instead of ‘12′ at the end ...
No Comments





