The basic of a PHP array is below
$a = array('a', 'b','c');
If you want to create an array from a string of text then you will need to explode the string into an array.
The basic of a PHP array is below
$a = array('a', 'b','c');
If you want to create an array from a string of text then you will need to explode the string into an array.