print "You used<br>$Oreused <br><br>$Ores[Name] $Oreused[Strength]";
this is right out wrong. You used $Oreused as an scalar value and as an array in the same string. Not sure what this was supposed to show so I don't know how to make it right
print "<option>$Ores[Name] - +$Ores[Strength] +$Ores[Constitution] +$Ores[Dexterity] +$Ores[Intelligence] +$Ores[Concentration]</option>";
this completely wrong as well. First, you're simply showing all the parameters of the ore on the select box, such thing is useless if you don't parse it afterwards. Second, on a select box that relates to a registry on the database, if you're relying on more than a single id, it's wrong, and will open your system for hackers.
This line should not show anything more than this:
echo '<option value="'.$ore['id'].'>'.htmlspecialchars ($ore['name']/* you can put any extra info here */).'</option>';