Files
2017-03-02 20:30:40 -06:00

28 lines
321 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
function basicResponse($in) {
switch ($in) {
case "Y":
$out = "Matches.";
break;
case "N":
$out = "Does not match.";
break;
case "X":
$out = "The cardholders bank does not support this service.";
break;
default:
$out = "No Response.";
break;
}
return $out;
}
?>