PHP cannot open that file. If you’re on a *nix type system, adjust the
permissions of the file so that the user that PHP runs as has access to
the file. Also, the beginning / is probably causing trouble, because
it’s looking from the root of your server for a file named public_html.
 
---John Holmes…
 
-----Original Message-----
From: Rodrigo [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, April 28, 2002 8:51 PM
To: [EMAIL PROTECTED]; 'Miguel Cruz'; 'John Holmes'
Subject: 
 
Ok, but I'm trying the following code wich is basicaly the same Miguel
sent me and I still get the same message.
Please excuseme for being so repetitive but Í don't seem to see where is
the mistake, Sorry guys for the trouble.
 
<?php
 
  $file_pointer = fopen('/public_html/emails.txt', "a") || exit;
  $string_to_write = ("$newemail") . "\n";
  fwrite($file_pointer, $string_to_write);
  fclose($file_pointer);
 
?>
 
 
 
Warning: Supplied argument is not a valid File-Handle resource in
/home/restricted/home/h4ck3r/public_html/write.php on line 4

Warning: Supplied argument is not a valid File-Handle resource in
/home/restricted/home/h4ck3r/public_html/write.php on line 6 

Reply via email to