You've already forked FinalYearProject-MyMind
mirror of
https://github.com/MrLyallCSIT/FinalYearProject-MyMind.git
synced 2026-01-18 07:09:41 +00:00
File Organisation
Includes addition of Individual Project Coursework Documents
This commit is contained in:
12
App Framework/ReferMe.php
Normal file
12
App Framework/ReferMe.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
// the message
|
||||
|
||||
if($_SERVER["REQUEST_METHOD"] == "GET") {
|
||||
$msg = = $_GET[data];
|
||||
|
||||
// use wordwrap() if lines are longer than 70 characters
|
||||
$msg = wordwrap($msg,70);
|
||||
|
||||
// send email
|
||||
mail("contact@alexanderdavis.tech","New Form Submitted",$msg);
|
||||
?>
|
||||
Reference in New Issue
Block a user