| 
<?php//Database related constants
 define("DB_SERVER", "localhost");
 define("DB_USER", "root");
 define("DB_PASSWORD", "YOUR_PASSWORD");
 define("DB_NAME", "magic_pixel");
 
 //Application related constants
 define("ONE_X_ONE_PNG", "1x1.png");
 define("ERROR_PNG", "error.png");
 
 define("SECRET_KEY", "da39a3ee5e6b4b0d3255bfef95601890afd80709");   //Changing it will nullify all the generated verification codes.
 
 |