How would I get an external PHP file as string without executing it. I've tried
$content = file_get_contents($url);
But it returns the results of the php file not the script itself. I've read that using a relative path would do what I want, but that's not viable as I'm trying to access a script from a different site. I do have FTP access, but I am hoping there's a simpler method.