I was wondering is there a way creating variable names dynamically?
Let's say I want to make an array by the name "mal300" with 2 variables '$x' and '$mal':
$x=300;
$mal = array('index.php','layout.css','config.asp');
//Change the variable name to 'mal300'...
$mal300 = array('index.php','layout.css','config.asp');
Any ideas?
Thanks!