fixing the serverside e-mail checking

This commit is contained in:
WebMaster
2017-02-08 00:00:54 -05:00
parent f5e1367e57
commit 7f597c5f98
2 changed files with 8 additions and 6 deletions

View File

@@ -1,3 +1,5 @@
<?php
echo shell_exec('./checkmail.sh \'' . $_GET['mailAddress'] . '\'');
$mailAddress=$_GET['mailAddress'];
$output=shell_exec(__DIR__ . '/checkMail.sh \'' . $mailAddress . '\'');
echo $output;
?>