how to know credit card - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: how to know credit card (/showthread.php?tid=63823) |
how to know credit card - nady - 12-12-2015 Hallo everyone i just wanted to know that if user input his credit card details then how can i check it's master card, visa card or etc. Help me.. Thanks Nady RE: how to know credit card - Narf - 12-12-2015 Please stop posting the same thread in different sections of the forums; I've deleted 4 duplicates from you since yesterday. RE: how to know credit card - rfulcher - 12-16-2015 One of the easiest ways to figure that out is to use this https://github.com/stripe/jquery.payment. On the page as the card is being entered you can store the card type to a field. If you want to do it in PHP there are many ways it can be done. Read over this post http://stackoverflow.com/questions/72768/how-do-you-detect-credit-card-type-based-on-number. Good luck. RE: how to know credit card - attrox - 12-16-2015 Mastercard number starts with 5. Visa starts with 4. Discover starts with 6. AMEX starts with 3. RE: how to know credit card - InsiteFX - 12-16-2015 (12-12-2015, 03:45 AM)nady Wrote: Hallo everyone PHP Code: <?php RE: how to know credit card - Rahmacruz - 02-25-2019 From my point of view you can't do this as per the laws. **Link redacted** |