Dynamic variable in PHP
Variable in PHP can be used altough it’s not declared.
In PHP you can use dynamic variable like this.
<?
$user = “variabel2″;
$$user = “Hello this is content from variabel 2″;
echo $variabel2; //Hello this is content from variabel 2
?>