I have a php .inc page with some variables defined.
<?php
define('user','x');
define('pass','xx');
?>
I have another page requesting the the .inc page
<?php
include_once("includes/test.inc");
code requesting those variables
?>
The variables are not available.
Im running IIS and my default web has a folder called includes and the test.php in the default folder.
Am I missing something? Or is my call to that directory wrong?
thx in advance,
alex