how to create a text file in remote server from local system with full path of that file.
I created a text file in my system.
$fp = fopen( http:://192.168.192.168/icronex/text.txt ,w+)
fwrite($fp,"icronex is my name");
fclose($fp);
But i got an error like can't find file in this directory...........
but i need to create a text file on remote system like
Plese send me the fully code of this.
Regards
icronex