Go to the documentation of this file.00001 <?php
00002 require_once "include/dmail.inc";
00003 function fuse($fname) {
00004 if (!function_exists($fname)) {
00005 include_once("lib/{$fname}.fnc");
00006 }
00007 }
00008 function tryit() {
00009 fuse('mfn_dmail_l');
00010 print (mfn_dmail_l('a', 'b'));
00011 }
00012 tryit();