how would i a)include a php script that is outside the web root (would it really be just a simple ../file.php), b)post form data to a php script outside the web root. I\'m l
A) if your web root is /www/myapp/public_html then your public_html/index.php could include scripts outside the web root by doing
require '../includefolder/script.php"
B) You can't post data directly to scripts outside the web root. The whole point of moving them there is so that there is no direct access to them; everything must pass along to them from your accessible scripts which are exposed in your web root.