At the moment I'm setting up an online shop (using OpenCart) for a client. All the the payments and transactions are carried out via payment gateways (PayPal, etc.), so the website never stores payment information (bank details, card numbers, etc.).
However, my client is still concerned about the safety of customers' personal details (address, DOB, full name, etc.). I've explained to him that using SSL, any data transferred between the client and the server IS encrypted, and that it's normal not to encrypt personal information on the server (I pointed out that even a company as big as Sony doesn't).
Obviously encrypting the contents of a MySQL is perfectly possible, but of course you still need to place the key on the server. And if someone gets into the server, they'll get the key as well and simply decrypt the database content.
So is there anything more I can do with regard to STORING personal info more securely? Are there any "industry techniques" I'm missing. Am I correct in thinking that the industry standard is storing personal info in plain text?
Thanks.