include "include/functions.php"; $page=''; $p = 4; if( isset( $_POST['name'] ) ) { $msgid = md5( time() ); $msg = $_POST['name']."\n".$_POST['email']."\n".$_POST['message']."\n\n(message file: ".$msgid.")\n"; $fp = fopen("contact/".$msgid, 'wb'); fwrite( $fp, $msg ); fclose( $fp ); @mail( "MonkeyMamaMala@aol.com", "Anjana The Chimp contact message", $msg ); //barry@blandland.co.uk } ?>
