Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/5GQXP3uUvhU/13517


Count Words

Enter the word / phrase in the form below


Games Industry










$text = $_POST['text'];
$count = count(explode(" ", $text));
if ($text == "" ) {
echo "";
}
else

echo"$text

words typed is $count "; ?>