1
Hello I have an array and need to print it on the screen separated by , and and ex..
<select name="quitacao[um]"class="large m-wrap" data-trigger="hover" required="" >
<select name="quitacao[dois]"class="large m-wrap" data-trigger="hover" required="" >
and so it goes
then I will have a quitacao array on the next screen
if I do this
implode(",",$quitacao);
I’ll be able to separate everything by comma but I need the last one to be with E
ex. January, February, March and November
Take all the names and put comma to separate them
– rray