When writing to a file several problems occur with this code:

<?php
$stuff = include ("news.txt");
$file = fopen ("news.txt", "w");
$newnews = include ("template.txt") . $stuff;
fwrite ($file, $newnews);
?>

However, this code works:

<?php
$file = fopen("template.txt", "w");
fwrite ($file, $temp);
fclose ($file);
?>

The problem with the first set of code is that it opens template.txt1, and
some letters that were in template.txt become a 1.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to