how can i append my vhost list, which is outside of my home directory
from the diagram below, is it possible from myfile.php to affect httpd.conf using fopen?
Code:root
|-var
| |-www
| |-html
| |-myfile.php
|
|-etc
|-httpd
|-conf
|-httpd.conf
Code:$Handle = fopen("httpd.conf", "a");
$Data = "some string";
fwrite($Handle, $Data);
fclose($Handle);

