Last active
January 28, 2019 17:49
-
-
Save Kendysond/d637bdb46f8dc3a4b03d660dec7f681b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Reads the variables sent via POST from our gateway | |
$sessionId = $_POST["sessionId"]; | |
$serviceCode = $_POST["serviceCode"]; | |
$phoneNumber = $_POST["phoneNumber"]; | |
$text = $_POST["text"]; | |
if ( $text == "" ) { | |
// This is the first request. Note how we start the response with CON | |
$response = "CON What would you want to check \n"; | |
$response .= "1. My Account \n"; | |
$response .= "2. My phone number"; | |
}else if ( $text == "1" ) { | |
// Business logic for first level response | |
$response = "CON Choose account information you want to view \n"; | |
$response .= "1. Account number \n"; | |
$response .= "2. Account balance"; | |
}else if($text == "2") { | |
// Business logic for first level response | |
// This is a terminal request. Note how we start the response with END | |
$response = "END Your phone number is $phoneNumber"; | |
}else if($text == "1*1") { | |
// This is a second level response where the user selected 1 in the first instance | |
$accountNumber = "ACC1001"; | |
// This is a terminal request. Note how we start the response with END | |
$response = "END Your account number is $accountNumber"; | |
}else if ( $text == "1*2" ) { | |
// This is a second level response where the user selected 1 in the first instance | |
$balance = "NGN 10,000"; | |
// This is a terminal request. Note how we start the response with END | |
$response = "END Your balance is $balance"; | |
} | |
// Print the response onto the page so that our gateway can read it | |
header('Content-type: text/plain'); | |
echo $response; | |
// DONE!!! | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment