My last question is finished, so yet another one to come :-)
Lets say i have a php script running on my server which draws a table (from <table> up to </table>) with some stuff in it. Why can't somebody else include this file on his server in a way like:
<html>
<body>
trying to get the script
<?PHP
include "http://www.domian.com/script.php";
?>
maybe finished
</body>
</html>
Sure this page is saved as for example test.php.
Normally my php has to parse the script and send the parsed output back to his server or am i stupid?
His server tolds something like can't include because of the include path is set to "./.." on his server. Don't know really.
Maybe this could be because of safe mode of php?
Any suggestions?