Lets say I'm having the following php array
Array(
[0]=>a,b,c
)
how can I convert it to get as result another array, what should look like
Array(
[0]=>a
[1]=>b
[2]=>c
)
|
|
You can simple use php explode() function for that. |
|||
|
|
|
This is the way to create index array if you want to give first index of your array whatever you want rather than 0.
So if you want to start you first index from 10 than.
will result like this
|
|||
|
|