File Organisation

Includes addition of Individual Project Coursework Documents
This commit is contained in:
Alexander Davis
2017-04-14 12:45:27 +01:00
parent 0018e82ee5
commit 32f42ec4db
204 changed files with 0 additions and 40360 deletions

12
App Framework/ReferMe.php Normal file
View 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);
?>