I am Trying to get backup of mysql database table using php script below but by executing this script it is creating the backup file but with no data in it .Any idea how to overcome this please help me out. 
Script
<?php
echo exec('mysqldump -u[root] -p[123456789] -h[localhost] [Android] [houseDetails] --where="addedDate=\'2013-11-22 09:17:28\'"> houseDetails.sql');
?>
--whereyou specify that you only want fields that have the exact date to be2013-11-22 09:17:28. You might want to specify a date range or something likeaddedDate >= "2013-11-22 00:00:00"or--where="addedDate BETWEEN '2013-11-22 00:00:00' and '2013-11-23 00:00:00'"addedDateor ratheradded_date?