Jump to content

Problem including file from other directory


Daze

Recommended Posts

Hello all,

I'm quite a newbie with php and I hope this is an easy-to-solve newbie problem. This is part of my application directory structure:

root/index.php
root/config.php
root/pages/main/login.php
root/lib/func.php
root/lib/funclogin.php

and I am using smarty templates. The problem is the following:

when I include func.php & config.php in login.php as the following:
[code]
include_once('../lib/func.php');
include_once('../config.php');
[/code]

it will warn me that the files can not be found. Am I doing something wrong here or is it something else?

Thanks in advance.

Cheers,
Daze

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.