6 lines
104 B
PHP
6 lines
104 B
PHP
|
<?php
|
||
|
// Create a constant array with config variables
|
||
|
const CONF = array(
|
||
|
"lastfm_key" => "key"
|
||
|
);
|