The below gives me a fatal error saying that "mymail" was not found.
Any ideas why? Looks right to me.
mailreq.php
include("mail.php");
$r = mymail("test","test");
mail.php
function mymail($body, $reqtype)
{
//blah blah
}
EDIT:
For some reason, this version of php doesn't see <? ?>
as valid shorthand tags. I changed it to <?php ?>
and it sees the functions now.