php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "md5 hashes"

What are the advantages and disadvantages of storing file names as md5 hashes in a PHP application?

Storing file names as md5 hashes in a PHP application can provide an added layer of security by obfuscating the original file names. This can help pre...

What are the potential security risks of storing passwords as MD5 hashes in a database and how can they be mitigated?

Storing passwords as MD5 hashes in a database is insecure because MD5 is a fast hashing algorithm that can be easily cracked using rainbow tables or b...

How can a "Forgot Password" function be implemented in PHP when passwords are stored as MD5 hashes in a database?

When passwords are stored as MD5 hashes in a database, the original passwords cannot be retrieved as MD5 is a one-way hashing algorithm. To implement...

Why is it unnecessary to use mysql_real_escape_string() on an md5 string in the PHP code?

Using `mysql_real_escape_string()` is unnecessary on an md5 string because md5 hashes are not vulnerable to SQL injection attacks. The purpose of `mys...

What are the benefits of storing MD5 hashes of uploaded images in a database, and how can this improve the process of updating and replacing images in a PHP application?

Storing MD5 hashes of uploaded images in a database can help in efficiently identifying and comparing images. This can improve the process of updating...

Showing 26 to 30 of 630 results

‹ 1 2 3 4 5 6 7 8 9 10 ... 125 126 ›
PHP.ORG

A free knowledge base for PHP developers. Open to all.

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.