The basic of a PHP array is below
1 2 3 |
$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
1 2 3 |
$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.
© 2022 CODEHAVEN