Hello,
Is it okay to save credit card data in the database. I know it will be password protected but still, it will be a disaster if someone ever hacks in. How do real world companies(mine is school project) save their customer's credit card information? Thank you in advance.
ryy705 0 Junior Poster
Recommended Answers
Jump to PostWell as a majority companies dont store creditcard information with them as it is a big security risk and isnt safe. For example many companies use a merchant account from providers like Paypal, therefore Paypal takes care of the payment and the company need not store any details of the …
Jump to PostWell, in order to ensure data is being sent over a secure environment, you will have to purchase a SSL Certificate and then lets say the billing system (where you take information and all of the customer) is under a sub-domain say for example billing.domain.com
I …
Jump to PostHey No Problem at all with the questions.
Well are you 100% sure that it is installed properly... to ensure just access your site using the https prefix do the following access your site using the https prefix.
example
Jump to PostWell since your familiar with php, here is a php code, All you have to do is paste it at the top of any page you would like secured.
//force redirect to secure page if($_SERVER['SERVER_PORT'] != '443') { header('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); exit(); }
All 16 Replies
Ole Raptor 19 Posting Whiz in Training
hivenk 0 Newbie Poster
Ole Raptor 19 Posting Whiz in Training
hivenk 0 Newbie Poster
djnzak 3 Light Poster
somedude3488 228 Nearly a Posting Virtuoso
ryy705 0 Junior Poster
djnzak 3 Light Poster
ryy705 0 Junior Poster
djnzak 3 Light Poster
effu 13 Junior Poster in Training
ryy705 0 Junior Poster
rgviza 8 Light Poster
djnzak 3 Light Poster
ryy705 0 Junior Poster
djnzak 3 Light Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.