I have an administrator page where you can click on a link which reads a PHP-script to dump the database. At least, in theory. How can I make PHP run "mysqldump ... > ..."?
Thanks, Akos
By executing the command using exec(), passthru or system().
Have a look at the manual.