if (preg_match ("/1[2][3-6][37|67][7-9][L|N]\d\d\d\d\d\d/", $VIN)) {
echo "1967 - 1969 VIN entered";
} else {
echo "NOT a VALID 13 digit VIN entered";
exit;
}
This should be saying the following:
1st char = 1
2nd char = 2
3rd char = 3 - 6
4th & 5th chars = 36 or 67
6th char = 7 - 9
7th char = L or N
8th - 13th chars = NUMBERS
The problem resides in the [36|37]
How do I specify I want it to allow "36" or "67"?