If I want to create an array:
$tem='12,13,14,15';
$arr = array($tem); //which is wrong
Instead of:
$arr = array(12,13,14,15);
How can I do? There's always a syntax error.
If I want to create an array:
$tem='12,13,14,15';
$arr = array($tem); //which is wrong
Instead of:
$arr = array(12,13,14,15);
How can I do? There's always a syntax error.