Like most that start threads like this. I will have to say I'm pretty new.
<head>
<?php include('http://www.example.ca/includes.php'); ?>
</head>
The above snippet of code fails to load a site the way I want. However the snippet of code below does work.
<head>
<?php include('./includes.php'); ?>
</head>
I just need to understand why -
Is the first example and path, not the same as the second example?
Please and thank you.