Jump to content

[SOLVED] fwrite()


Cetanu

Recommended Posts

I have a code that seems to execute, and it creates the needed .txt file, but it will not write my information to the file. I was hoping someone could help me out. :P

 

<?php 
if(isset($_POST['send'])){ 
  $name=$_POST['name']; 
  $email=$_POST['email']; 
  $subject=$_POST['subject']; 
  $body=$_POST['body']; 
  $bodysec=stripslashes($body);
  $date=date("D, M d, Y"); 

   if(!$name || !$email || !$subject || !$body){ 
        echo "<div class='error'>You did not fill in all required fields.</div>"; 
   } 
   else{ 
   $contact = "contact.txt"; 
   $message="Message From: ".$name."<br/> 
                     Subject: ".$subject."<br/> 
                     Message: ".$bodysec."<br/> 
                     This was written on: ".$date."<br/> 
                     Reply to ".$email."<br/><br/>";
   fopen($contact, "a");
   chmod($contact, "777"); 
   fwrite("contact.txt", $message); 

   echo "<div class='success'>Successfully sent. Please be patient, now.</div>"; 
   fclose($contact); 
}
}
?>

Link to comment
https://forums.phpfreaks.com/topic/173652-solved-fwrite/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.