I am trying to create a txt file on a server that is not my web server using the following php the code.
<?
$fp = fopen("server ip\directory structure to file\testlist.txt", "a");
$outputstring = $firstName.",".$lastName.",".$school.",".$Number.",".$day."/".$month."/".$year."\n";
fwrite($fp, $outputstring);
fclose($fp);
?>
The error message I get is
fopen("server ip\directory structure testlist", "a") - No such file or directory in E:\lnetpub\Homepage\account\test\Out.php on line 7
How do I point it so its not looking on the web server.
please help