in /var/www/ is my main.php file:
<?php
include("../config/config.php");
header('Content-type: text/plain');
echo $user;
?>
in /var/config/ is my config.php file
<?php
$user = "myUser";
?>
When calling main.php in my browser I'm getting a blank site, instead of "myUser".