Array
(
[0] => string1
[1] => string2
[2] => string3
[3] => string4
)
$key = $string1;
$value = $string2;
$key = $value;
I am trying to figure out how to convert this array into an associative array starting from [0] being the $key and [1] being the $value throughout the entire array.