I'm trying to load 2 .php files hosted in the (public_html) of my cPanel hosting from a subdomain, so my files are hosted here
(domain.com/includes/db.php
(domain.com/includes/init.php)
And I'm trying to load them from here
(subdomain.domain.com/api.php)
I've been looking online and have tried everything I've found but noting works, I'm getting these errors
(require_once(/home/user/public_html/domain.com/includes/db.php): failed to open stream: No such file or directory in /home/user/subdomain.domain.com/api.php on line 3)
(require_once(): Failed opening required '/home/user/public_html/domain.com/includes/db.php' (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/user/subdomain.domain.com/api.php on line 3)
Does Anyone have any suggestions on what to do?
Thanks