Is there anyway I can put a file online, on a free sever, which I can write from Scratch or Panther or some other mods and read from them.
Im using Panther
Any way?
Offline
Go to 000webhost.com, register a domain, click 'file manager', then 'public_html', then 'new file' then type whatever name and contents, click "save" then "back", lastly click "chmod" then check off "write" next to "everyone" (this is pretty poor security, but whatev) and click "OK" (or whatever the accept button says)
Offline
Its an interesting idea, Im just not sure its possible without using an external programming language...
Offline
NXIII was explaining but didnt get to the end!
Offline
Patience, young grasshopper. Anyway, I was wondering how to do this myself.
Offline
nXIII wrote:
Php?
Does php work in squeal? Iv found the code to do it!
//Open the file <?php $File = "YourFile.txt"; $Handle = fopen($File, 'w'); ?> //Write to the file and close it <?php $File = "YourFile.txt"; $Handle = fopen($File, 'w'); $Data = "Jane Doe\n"; fwrite($Handle, $Data); $Data = "Bilbo Jones\n"; fwrite($Handle, $Data); print "Data Written"; fclose($Handle); ?>
Offline
ok NXIII can you make me a block to do it...
Offline