Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 24th, 2012  |  syntax: None  |  size: 0.19 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to secure database passwords configure file in PHP?
  2. <?php
  3.    $db_host = "localhost";
  4.    $db_user = "username";
  5.    $db_password = "the literal password";
  6.    $db_database = "default_db";
  7. ?>