Researching Payment Gateway in Malaysia Universities contexts

Abstract A payment gateway is a service that processes and verifies electronic transactions for online and offline businesses. It acts as a bridge between the merchant’s website and the financial institution that processes the payment. When a customer initiates a transaction on a merchant’s website, … Continue readingResearching Payment Gateway in Malaysia Universities contexts

Create database and user in CWP7

Have problem in your WordPress net able to establish connection. it might have been your database not exist or the incorrect password. Below is the tutorial on how you can create database and the username for it.

ANGULAR NG-SHOW AND CHANGE TEXT FIELD TO INPUT FIELD

Example code in Angular JS to change the text Heading to input text field without losing 2-way data binding. <!DOCTYPE html><html><script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js”></script><body><div ng-app=”myApp” ng-controller=”myCtrl”><h1 ng-dblclick=”change()” ng-if=”!myv”>{{carname}}</h1><h1 ng-show=”myv”><input type=”text” ng-model=”carname”><button ng-click=”done()”>Done</button></h1></div><script>var app = angular.module(‘myApp’, []);app.controller(‘myCtrl’, function($scope) { $scope.carname = “Volvo”; $scope.change = function() { $scope.myv = … Continue readingANGULAR NG-SHOW AND CHANGE TEXT FIELD TO INPUT FIELD