So I have a variable $family.
$family = "mom dad sister brother";
I have to make an array $f from variable $family. Something like this
$f = array("mom", "dad", "sister", "brother");
Next thing that I have is $nice_family = "is nice";
Desired result : mom is nice, dad is nice, sister is nice, brother is nice.
Thanks in advance!
$f = explode(' ', $family);is a good start.... PHP Docs