I have a PHP array, that look like this
$melee = array(
"ct-knife" => "link",
"t-knife" => "link",
"zeus" => "link"
);
foreach ($pistol as $value){
echo '<option value="'.$value.'">"'.$value.'"</option>';
}
and I want my "Foreach" to print out the names of the links, but it prints out the links. Does anyone know how to fix this?
Thanks in advance