Brian,
A little modification to account for an existing loop that the description was in, and the addition of the space stripped out in the explode and that now works:
$description = $row["Bio_$lang"];
$words = explode(" ",$description);
$i = 0;
while ($i < 13) {
echo ("$words[$i] ");
$i++;
}
With the $i = 0; stated outside of both loops...
Thanks!
Gary