Hello
I am new to MySQL and I need some sort of assistance. I am trying to export data only from a db using mysqldump. By using same methods I can export both data and its structure; following command I am using:
Quote:
$creatbackup = "c:/xampp/mysql/bin/mysqldump.exe -u ".$user_name." --password=".$password." ".$db_name." applications> ".$backupFile;
Where:
$username = db user_name
$password = db password
$db_name = db name
$backupFile = file name + path
|
I get results when I use this command, but when I am trying to create a file with only data. I get nothing. Can you help me?