Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<?php
/* Configuration for Project */
class Config {
const server_name = 'localhost';
const secret_key = 'dfJdHtKsNiMrr0JV6ebvD9CbTiHugBiDwCRkAJxu9KtXU+ig/fZlWNHr6xnZaeYFrempQFIjvxiYf3NTWOJq0w==';
const encr_algo = 'AES-128-CBC';
const hash_algo = 'SHA256';
const my_netid = 'jwb11006';
const db_host = 'localhost';
const db_name = 'db_jwb11006';
const db_user = 'db_jwb11006';
const db_pass = 'luckycharms';
const cookie_path = "/security_prj1";
const cookie_domain = "";
const cookie_name = 'csp1_jwb11006';
}
?>