I can't seem to get this php code to work:
i get this error:PHP Code:<?php
$file = '/home/gamesjet/public_html/test.txt';
if (is_writable($file) == false) {
die('Unable to write to file');
}
// The data
$data = fopen("http://www.example.com/", "a+");
// Write to file
file_put_contents ($file, $data);
?>
Unable to write to file
test.txt is chmodded to 777.



Reply With Quote
.

Bookmarks