Hi,
Can anyone suggest a way to get 2 words together from each other word.
Example;
UN nuclear watchdog refers Syria to Security Council
I need to export this;
UN nuclear
nuclear watchdog
watchdog refers
refers Syria
Syria to
to Security
Security Council
I was thinking using
$line = "UN nuclear watchdog refers Syria to Security Council";
list($worda, $wordb, $wordc, $wordd, $worde, $wordf, $wordg) = split(' ', $line);