add sendmail in orders

This commit is contained in:
Your Name
2021-06-21 17:55:53 +03:00
parent 099e0be8f5
commit 5e27771f88
11 changed files with 527 additions and 91 deletions

View File

@@ -0,0 +1,11 @@
<?php
function post_value($name, $default = ''){
if (isset($_POST[$name]))
return $_POST[$name];
else{
return $default;
}
}