Prueba esto:
Código PHP:
<?php
header("Pragma: no-cache");
header("Expires: 0");
header("Content-Transfer-Encoding: binary");
header("Content-type: application/force-download");
header("Content-Disposition: attachment; filename=CS_".date('d').date('m').date('Y').".sql");
$arch='CS_'.date('d').date('m').date('Y').'.sql';
$ejecuta='"C:\Archivos de programa\Wamp5\mysql\bin\mysqldump --password=robfrut --user=root pfc3 >'.$arch.'"';
system($ejecuta);
echo file_get_contents($arch);
unlink("CS_".date('d').date('m').date('Y').".sql");
?>