Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- *Define()
- *Use to define somtings, define() some Static path OR define() some static content.
- *like defne('CONSTANT','Hello World!'); if we echo the CONSTANT the ouput will be
- *Hello World.
- *
- */
- //Display PHP error OR Warning.
- error_reporting(E_ALL);
- ini_set('display_errors', 1);
- define('DB_HOST', 'localhost');
- define('DB_USER', 'root');
- define('DB_PASS', 'asad');
- define('DB_NAME', 'gallery_db');
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement