Jump to content

displaying soc. security number


phppup

Recommended Posts

After submission I want to be able to pull up a customer record and the LAST 4 DIGITS of the social security number that was provided.  What's the best way to do this? 

Am I best off having them INPUT the digits into three different fields that will load into the DB as Socxxx, Socxx, and Socxxxx, and just calling the Socxxxx field, or is there a way to 'strip' all but the last 4 digits?

Link to comment
https://forums.phpfreaks.com/topic/257880-displaying-soc-security-number/
Share on other sites

I'm assuming you have the required permissions to store people's SSN... and if you do, I would have to disagree with ManiacDan on this one.  It would be much better to format this string in the query so the actual SSN isn't floating around, even though the likelihood of someone grabbing the data from the script it highly unlikely, the data is still very sensitive and must be handled that way.

 

So, something like this should work

SELECT RIGHT(ssn_number ,4)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.