is there a way to copy database from the live server into local server?
how to do this?
MySQL database? mysqldump
mysqldump -h<remote host> -u<username> -p<password> --opt --allow-keywords -B <database> | mysql -u<local username> -p<password>
should do the job... regards
but this one how i do it?go to the mysql in live server and write the statement for the query?