This file contains 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 | |
//initialise the maximum execution time to 2 minutes to allow the process to finish | |
ini_set('max_execution_time', 120); //120 seconds = 2 minutes | |
$url = "https://app.mpowerpayments.com/api/v1/direct-mobile/charge"; |
This file contains 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 | |
$data = array ( | |
"customer_name" => "worla", | |
"customer_phone" => "0546652999", | |
"customer_email" => "[email protected]", | |
"wallet_provider" => "MTN", | |
"merchant_name" => "Creators Hub", | |
"amount" => "1", | |
); |