I need to trim split slice cut or whatever it is to get this into two variables.
Code: Select all
$value1___$value2
Please help.
Thanks
Moderator: General Moderators
Code: Select all
$value1___$value2
Code: Select all
$value1."____".$value2;Code: Select all
$str = "Blah___Blah some more";
$strArray = split('___', $str);
$value1 = $strArray[0];
$value2 = $strArray[1];