Discussion:
Where can I get magnetic stripe codes?
(too old to reply)
s***@hotmail.com
2005-10-30 05:15:18 UTC
Permalink
I want to make a computer to proccess swiped IDs and I need to string
that's the in the magnetic stipe for all the states than have them...
I've looked for a few days and I've come up with nothing
s***@hotmail.com
2005-10-30 05:30:35 UTC
Permalink
I've tried an ohio id and the info isn't encryped in fact this code
will show you some of the basic on the id

#!/usr/bin/perl -w


while($i<=100){
$input = <STDIN>;
chomp($input);
print "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
if($input =~ /\%(\w\w)(.*?)\^(.*?)\$(.*?)\$.*\=(\d+)\?/){

print "\n$4 $3 was born in $2, $1 on ";
$dob=$5;
}

if($dob =~ /\d+(\d\d\d\d)(\d\d)(\d\d)/){
print "$2/$3/$1\n\n"
}
$i++;
}



I just want to make an age verifier for a bar and I need to know the
lay out for other states
American
2005-11-14 03:18:23 UTC
Permalink
Get someone to properly encode it with encoding software?

Loading...