Appreciation - Any help
$str= "3478183817447138472387";
how can i get first 10 digits to $str.
substr()
<? $str= substr("3478183817447138472387", 0, 10); echo $str; ?>
Cgraz
Thanks !! I got it using a loop but yours is look better code.. Once again thanks for your help