Hi I have some code to convert a variable into a var.php as follows:
$choice = $HTTP_GET_VARS['printcontent'];
$choice = $filename;
$filename .= ".php";
-> include($filename); <-
echo $filename;
The second from last line is where i want to call the "created" php file and include it, but it will not work, can anyone help me out?
Thanks.