Files
i-buy.properties/checkMail.php

6 lines
130 B
PHP
Raw Permalink Normal View History

2017-02-07 22:40:37 -06:00
<?php
2017-02-08 00:00:54 -05:00
$mailAddress=$_GET['mailAddress'];
$output=shell_exec(__DIR__ . '/checkMail.sh \'' . $mailAddress . '\'');
echo $output;
2017-02-07 22:40:37 -06:00
?>