This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Wednesday, 28 March 2012

how to update value using join between two tables in mysql

This example may be help full for you. UPDATE xcart_products INNER JOIN xcart_extra_field_valuesON xcart_extra_field_values.productid = xcart_products.productidSET xcart_products.forsale = 'N' WHERE xcart_extra_field_values.value = 'article' and xcart_extra_field_values.fieldid=1...

Thursday, 1 March 2012

Complete code with html sign up form and validation:

Copy and past given code in notepad and save it with .html for demo. Click here for detail  <head> <script type="text/javascript"> function validation_for_signup() {                ...

Javascript Validation for complete SignUp form

  Using client side JavaScript validation is an efficient way to validate the user input in web forms. Form validation is the process of checking that a form has...