I have a payment gateway api for BluePay. My application is in PHP. I am able to process a transaction with code similar to this:
bp->process(1111111111111111,.....) with 111111111111111 being the card number.
the process function posts the card number to bluepay's site using PHP's CURL wrappers.
How can I safely get a card number from the user?
where I substitute 111111111111111 with a variable that is filled in from the user.