IMPS: Immediate Payment Service (IMPS)

What is IMPS? Immediate Payment Service (IMPS) is an instant interbank electronic fund transfer service available 24×7, throughout the year including Sundays and any bank holiday. Customers can transfer and receive funds via IMPS using their registered Mobile number and Mobile Money Identifier (MMID) or Account number and IFSC code. Advantages of IMPS The account of the receiver is credited instantly. The facility is available 24×7, throughout the year including Sundays and bank holidays. Please Note As per the RBI guidelines, the transaction credit will be effected based solely on the beneficiary account number information as provided by remitter and […]

Read more

PHP script to generate a random string of AplhaNumeric values of given length

Script: <?php function generateRandomString($length = 64) {     $characters = ‘0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ’;     $randomString = ”;     for ($i = 0; $i < $length; $i++) {         $randomString .= $characters[rand(0, strlen($characters) – 1)];     }     return $randomString; } echo generateRandomString(); ?>   Output: < p>

Read more

Integrating PHP into HTML Form pages.

The login pages of a web site are usually HTML forms. The HTML forms will be linked to a script to process the data received via form from the user.   This linking is performed by HTM Form Attribute called  “Action” (HTML <form> action Attribute).  Syntax:  <form action="<scriptname>" method="<post/get>"> Example: Save below content as “Form-Example.php” <form action="login.php" method="post">   First name: <input type="text" name="fname"><br>   Last name: <input type="text" name="lname"><br>   <input type="submit" value="Submit"> </form> The page would look like below form for the end user:   Upon user clicks “Submit” button the respective login.php script gets invoked.  Let’s say you’ve […]

Read more