Hi,
I have a PHP function called 'database_backup()' that makes a complete backup of a MySQL database. Every time I run the php file I want it to email me the backup. I tried doing it like this:
$my_message = database_backup();
mail($my_email, $my_subject, $my_message, $my_headers);
But that didn't work - How can I include the contents of a function in an email message?
Thanks,