Hello, heres my script and i don't understand what's wrong with it -
<html>
<body>
<?php
$file="file.txt";
$fileo = fopen($file,"a");
$filew = fwrite($fileo,"Rocks Are Cool");
$filer = fread($fileo);
$filec = fclose($file);
echo $filer;
?>
</body>
</html>
So whats wrong with it ?



, heres my script and i don't understand what's wrong with it -
Reply With Quote

Bookmarks