POST to save data

Heya. I’m having a little bit of trouble saving data I’m sending over post to files using a php script on my web server. I’m sending the following data to the server (servername, directory, filename, filedata) and this is the script on my server I’m using.

[php]<?php
$file = “game/servers/” . $_POST[“servername”] . “/” . $_POST[“directory”] . “/” . $_POST[“filename”];
$fp = fopen($file, “a”);
$data = $_POST[“filedata”];
fwrite($fp, $data);
fclose($fp);
?>[/php]

When I go to check the folder on the server after the data has been supposedly sent, there are no new files or anything in the folder indicating that something’s going wrong. Can anybody offer me any suggestions?

Have you checked your file permissions? Ive had issues like this before

Sponsor our Newsletter | Privacy Policy | Terms of Service