coderNewbie wrote:the PHP code and the data it requires (eg. user data files on the disk) have to be on the same partition of the disk
I would say tell your 'expert' to think again.
PHP can access data just as well as you can. I can open a file using PHP in any hard drive/partition I like (assuming permissions allow this):
$file1 = file_get_contents('D:\file1.doc');
$file2 = file_get_contents('C:\file2.doc');
Assuming allow_url_fopen is set to TRUE, you can even access data via HTTP:
$google = file_get_contents('http://www.google.com');