I have a data array like this:
$data = array(1,2,3);
how to change the array like this:
$data = array('1','2','3');
Tanks Before
I have a data array like this:
$data = array(1,2,3);
how to change the array like this:
$data = array('1','2','3');
Tanks Before