What is the (if any) syntax for using a variable inside the path for an included file?
A simple condition checks for a value in a string and if it's there, it includes the requested file. For example if the variable $show_me has the value "great_stuff" it will include the file "includes/great_stuff.txt" otherwise a default file will be included. It seems really simple, but I just keep getting parse errors all over the place.
"<?php
include ('includes/'$show_me'.txt');
?>" does not work.