I am a newbie in PHP/MySql. I face a strange problem. On my login page when user enters login and password and clicks Submit, the script takes to another page "processlogin.php". The browser echoes the entire code from this page (strange) and then displays error:
Fatal error: Class 'DBManager' not found in C:\wamp\www\ROT\processlogin.php on line 3.
Whereas i believe that DBManager.php exists and a class DBManager is defined in it. First three lines from processlogin.php are:
<?php
session_start();
include('Includes/DBManager.php'); $DB = new DBManager(); //this line causes exception.
Please help!!!