I would like to join two variables together, unless I can solve the following without..
My mission is to create an
Include($file);
Where $file is
first part
$Var1 = "destination/dir/";
and
$var2 = "requiredfile.php";
Therefore joing them together $file will become
destination/dir/file.php
So how to make
$file = $var1 + $var2 ??
Any Ideas