Aşağıda bana "mymail" bulunamadı söyleyerek ölümcül bir hata verir.
Herhangi bir fikir neden? Bana doğru görünüyor.
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.