i have include a file sidebar.php in view of index page but it gives me a error like these
A PHP Error was encountered
Severity: Warning
Message: include(sidebar.php): failed to open stream: No such file or directory
Filename: core/Loader.php(829) : eval()'d code
Line Number: 38
and other error is these
A PHP Error was encountered
Severity: Warning
Message: include(): Failed opening 'sidebar.php' for inclusion (include_path='.;C:\xampp\php\PEAR')
Filename: core/Loader.php(829) : eval()'d code
Line Number: 38
the file sidebar.php is in the same directory and the code is as follows:
  <div class="col-md-3 left_col">
          <div class="left_col scroll-view">
            <!-- sidebar menu -->
            <?php include 'sidebar.php'; ?>
            <!-- /sidebar menu -->
          </div>
        </div>
i am novice here so please forgive!
 
     
     
    