check the read/write permissions in the folder the file is located in, 
they should be set to read/write/execute or th file will not be created,

you might also want to use this format to open file

$fp = fopen("your/path/goes/here", "a");

your code would look like this:

<?
$fp = fopen("your/path/goes/here", "a");
$string_to_write = "$newmail" . "\n";
fwrite($fp, $string_to_write);
fclose($fp);
?>


________________________--__-______-______________
eat pasta
type fasta


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

Reply via email to