Have you faced with a situation where you needed to split some words ? For that exists explode() php function. Look how it works :
<?php $words = "some words needed to split"; $wordsarray = explode(" ", $words); print_r($wordsarray); ?>
Have you faced with a situation where you needed to split some words ? For that exists explode() php function. Look how it works :
<?php $words = "some words needed to split"; $wordsarray = explode(" ", $words); print_r($wordsarray); ?>