how can i break a sentence to 10 characters each? eg:
$string = "This is a sentence over 10 characters."; $array[0] = "This is a "; $array[1] = "sentence o"; $array[2] = "ver 10 cha"; $array[3] = "racters.";
Why my webmail cannot receive my mail from php? But yahoo can.
try wordwrap
http://www.php.net/manual/en/function.wordwrap
thanks... but it just break the string, so my problem is how can i get the second row string?