HTML drop down or select box for Payment Method Options
Many forms need to add or show the payment method. The uses of payment method select box in the billing software, hotel/restaurant software, GST filling the form and financial and banking software or web applications.The payment method is used for small software/web application and also large software/web application in many sectors.
Copy following HMTL code in your webpage.
<select name="payment_method" id="payment_method">
<option value="">-Select Payment Method-</option>
<option value="Cash">Cash</option>
<option value="Cheque">Cheque</option>
<option value="DD">DD</option>
<option value="NEFT">NEFT</option>
<option value="RTGS">RTGS</option>
<option value="IMPS">IMPS</option>
<option value="UPI">UPI</option>
<option value="Net Banking">Net Banking</option>
<option value="Debit Card">Debit Card</option>
<option value="Credit Card">Credit Card</option>
<option value="PhonePe">PhonePe</option>
<option value="GooglePay">GooglePay</option>
<option value="Paytm">Paytm</option>
<option value="Paypal">Paypal</option>
</select>
Example of Payment Method Dropdown/Select Box
Payment Method Options
- Cash
- Cheque
- DD
- NEFT
- RTGS
- IMPS
- UPI
- Net Banking/Online Banking
- Debit Card
- Credit Card
- Paytm
- PhonePe
- Google Pay
- Paypal
Database structure for the payment status field
Create payment type master table:
CREATE TABLE `tbl_payment_type` (
`payment_type_id` tinyint(3) UNSIGNED NOT NULL,
`payment_type` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Stored_Payment_type_Details';
Insert SQL to insert payment type in the databsae:
INSERT INTO `tbl_payment_type` (`payment_type_id`, `payment_type`) VALUES
(1, 'Cash'),
(2, 'Cheque'),
(3, 'DD'),
(4, 'NEFT'),
(5, 'RTGS'),
(6, 'IMPS'),
(7, 'UPI'),
(8, 'Net Banking'),
(9, 'Debit Card'),
(10, 'Credit Card'),
(11, 'Paytm'),
(12, 'PhonePe'),
(13, 'Google Pay'),
(14, 'Paypal');
Know more about payment method:
- Cash - https://en.wikipedia.org/wiki/Cash
- Cheque - https://en.wikipedia.org/wiki/Cheque
- DD - Demand Draft
- NEFT - National Electronic Funds Transfer
- RTGS - Real-time gross settlement
- Net Banking/ Online Banking - https://en.wikipedia.org/wiki/Online_banking
- Debit Card - https://en.wikipedia.org/wiki/Debit_card
- Credit Card - https://en.wikipedia.org/wiki/Credit_card
- Paytm - https://paytm.com/
- PhonePe - https://www.phonepe.com/en/
- Google Pay - https://pay.google.com/
- Paypal - https://www.paypal.com/in/webapps/mpp/home
- IMPS - Immediate Payment Service
- UPI - Unified Payments Interface
Hey thanks for this information, it helps in my web application.
ReplyDelete