I have a variable called
$core
I also have 3 other variables called
$one, $two, $three
I need to (many times) display a random combination of these where $core is always included and 1 of the 3 other variables are included once either before or after:
eg:
$two $core
$core $one
$three $core
$core $two
I'm unsure how to get this randomness working with PHP? A push in the right direction would be greatly appreciated.
thx