I am trying to combine some php variables to get the full path to a file.
$filepath and $file are working variables. I want the combined variable to be like > filepath/file.xml
$get = file_get_contents( $filepath '/' $file '.xml');
this is what I have and does not work.