php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "hashing passwords"

What are the best practices for securely hashing passwords in PHP?

When storing passwords in a database, it is important to securely hash them to prevent unauthorized access in case of a data breach. One of the best p...

What best practices should be followed when storing and handling user passwords in PHP, especially in relation to bcrypt hashing?

When storing and handling user passwords in PHP, it is best practice to use bcrypt hashing to securely store passwords. This involves hashing the pass...

What is the recommended method for securely hashing passwords in PHP and why is using md5 not recommended?

The recommended method for securely hashing passwords in PHP is to use the password_hash() function with the PASSWORD_DEFAULT algorithm. This function...

How can the use of md5 hashing for passwords in PHP be improved for better security?

Using md5 hashing for passwords in PHP is not secure due to its vulnerability to brute force attacks and the availability of rainbow tables. To improv...

What are the potential risks of using hashing instead of encryption for user passwords in PHP?

Using hashing instead of encryption for user passwords in PHP is a more secure approach because hashing is a one-way process that converts the passwor...

Showing 36 to 40 of 3581 results

‹ 1 2 ... 5 6 7 8 9 10 11 ... 716 717 ›
PHP.ORG

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

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.