Thanks 🙂
But I still got lots of questions....
When writing file, how can I define where I want that file to be?
I am using this code to write files:
<?php
$vastaus = 'Success';
echo $vastaus;
$handle = fopen($tiedosto, 'a');
fwrite($handle, $tuote);
fclose($handle);
?>
Now this is writing everthing in cgi-bin. I want to write diffirent dir that php is.