> I know that it is length, and I gave the correct length for an 11 character > string minus two characters. But as always, there is more than > one way to skin a mule.
$string = '12345678901'; $jayString = substr($string, 0, 9); $kevinString = substr($string, 0, 8); echo $jayString; // echos 123456789 echo '<br />'; // echos 12345678 echo $kevinString; It turns out to "skin" a mule is to outsmart him. Because mules aren't actually stubborn, they're just smarter than most of us. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php