I have the following array:
array('Elnett', 'INOA INOA', 'Playball P', 'Preferred Color Specialist',
'Série Expert', 'Série Nature', 'Techni art')
I would like to have keys and values like:
array('Elnett' => 'Elnett',
'INOA INOA' => 'INOA INOA',
'Playball P' => 'Playball',
'Preferred Color Specialis' => 'Preferred Color Specialist',
'Série Expert' => 'Série Expert',
'Série Nature' => 'Série Nature',
'Techni art' => 'Techni art')
How can I accomplish this?
<pre>elements. Edit your question and try it out. Click the orange question mark in the editor toolbar for more information and tips on formatting.