Ok, thank you for your answers, so if i have a php file like this:
<?php
$filename = "Alumni-Data.csv";
$Handle = fopen($filename, 'a');
$Data = $_GET['dataToFile'];
fwrite($Handle, $Data);
fclose($Handle);
?>
1. Question: Should this saveFile.php file contain anything else, or it can containt just this code?
and i have a line like this in my PDE file:
ToPHP=loadStrings("http://alumni.vgtusa.lt/test/saveFile.php?data="+testData);
(testData is string, and ToPHP is string[])
With the code above should it work or am i doing something wrong?