Hello,
I am using the following line:
include_once __DIR__ . '\script\framework.php';
The include_once line is located in /public_html/index.php
The framework.php file is located in -> /public_html/script/framework.php
It contains a block of html I want to print on the page
The issue
Nothing happens. No error just a blank page without the include_once having any effect. What am I missing?
I am using the following line:
include_once __DIR__ . '\script\framework.php';
The include_once line is located in /public_html/index.php
The framework.php file is located in -> /public_html/script/framework.php
It contains a block of html I want to print on the page
The issue
Nothing happens. No error just a blank page without the include_once having any effect. What am I missing?