No, multiple hashes are not less secure, they are an essential part of good security.
When hashing a password, use a few thousand iterations of the hash function. This increases the time it takes for an attacker to try each password in their list of candidates. The time it takes to brute force a password is changed from hours to years.
Using "salt" is also essential to prevent a dictionary attack.
Here are other answers I've written on this topic:
Also read PKCS #5 for authoritative information on the role of salt and iterations in hashing. Even though PBKDF2 was meant for generating keys from passwords, it works well as a one-way-hash for password storage.
Can anyone offer some proof or even a citation that shows that there are collisions in MD5 over the input range 0–2128 - 1? I'm honestly curious about this. I'm not mathematically equipped to figure this out, but since MD5 only maintains 128 bits of internal state, if it can really produce 2128 different outputs, it seems that there would be no collisions when feeding back its output.
In any case, you have to consider security in the context of a threat model. One scenario where stored passwords need protection is when subjected to an offline attack. If passwords aren't salted, they can be broken with a dictionary attack. If they are, the attacker falls back to a brute force attack.
This is where arguments about theoretical weakness due to collisions in feedback (which no one here has demonstrated exist) fall apart. All passwords are not equally likely. Attackers have a list of likely passwords and their permutations. They don't start by systematically generating every possible password string, so it really doesn't matter that that space is infinite. They start with "password123" and progress to less frequently used passwords. Let's say their list is large: 10 billion candidates. Let's say that a desktop system can compute 1 million MD5s per second. In less than three hours, they can check their whole list if only one iteration is used.
Now suppose that 2000 iterations are used. Now it takes 8 months to check their list.
PBKDF2, a key derivation function, offers sufficient security for many applications today. However, bcrypt was developed to make the "hashing" time tunable; to make it take a long time, even in the face of increasing computational power.