Hello I have $string1, Array[] and $string2. I want to create a Arraynew[] such that
Arraynew[0]=$string1
Arraynew[1]=Array[0]
.
.
.
Arraynew[n-1]=Array[n]
Arraynew[n]=$string2
The problem being that I don't know how many elements are in Array[] since it's from parsed data that changes and also I don't know how to formulate the above correctly in PHP.
Please help me.
Thank you.