Related Articles
How to take Backup of MYSQL database sql file using MYSQLDUMP Command
For a single database: mysqldump –opt –user=root –password database1 > singledb.sql For multiple Backup of databases: mysqldump –opt –user=root –password –databases database1 database2 > multipledb.sql To import a MYSQL .sql file from one location to particular location : source /home/SSI/process_databases_backup.sql
5 Free Web Hosting Providers With Linux PHP and Mysql
Below are the Top Best 5 Free Web Hosting Providers With Linux PHP and Mysql along with Cpanel systems. Free Web Hosting Websites 1. 000WebHost 000WebHost.com provides one of the most reliable and feature-rich web hosting service without advertising. All accounts come with 500 MB disk space, 100 GB data transfer and PHP and MySql […]
How to Show Errors in PHP
Below script is to show errors in PHP, the error_reporting function will show all the error.You have to initialize at the start of PHP tag.