Skip to content
Permalink
3481a87158
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
20 lines (15 sloc) 499 Bytes
<?php
/* Configuration for Project */
class Config {
const server_name = 'localhost';
const secret_key = 'dfJdHtKsNiMrr0JV6ebvD9CbTiHugBiDwCRkAJxu9KtXU+ig/fZlWNHr6xnZaeYFrempQFIjvxiYf3NTWOJq0w==';
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';
}
?>