Best practices in Javascript

Following are the few practices doing in the coding using javascript. 1.Try to Avoid global Variables In some case we cant able to remove global variable.try to use local variable instead of global variable.your global variable or function defined in the script,if we use the same variable or function in the script again it wil… Read More »

How to copy a table from one database to another database including structure and data in mysql

There are different options for copying table from one database to another database. Two methods i m giving here 1.In phpmyadmin one option is there to copy tables.Phpmyadmin if you go to operations tab->copy database to using the below options using a checkbox. Structure only Structure and data Data only CREATE DATABASE before copying Add… Read More »