i have 2 portions of site as usual others do have.Admin and User.
in the user section. all webpages of php are picking values defined in language files. But in the admin section providing proper path n everything..Values are just not visible even there is no error.
like
i have defined a variable in following way in file abc.php
-------abc.php------
<?php
$opt="Welcome Guest";
?>
-------End of abc.php------
in another file..
----------admn.php-------
<?php
require_once("../abc.php");
echo "{$opt}";
?>
--end of admn.php----
file admn is placed in administration folder and abc.php is placed in the root folder.
how can i do that ? i need immediate help plz....i've a deadline to meet