6 lines
90 B
PHP
6 lines
90 B
PHP
<?php
|
|
// M-Pesa Hook File
|
|
function hook_payment(){
|
|
echo "Payment Hook Triggered";
|
|
}
|
|
?>
|