Metin dosyası PHP İhracat - Sadece ilk satırı tasarrufu

0 Cevap php

Ben ancak benim kod sadece ilk değişken yakalama ve geri kalanı göz ardı edilir bir metin dosyasına bazı ekstre $ _POST bilgilerini vermek için çalışıyorum. Ben bu şekilde metin dosyasına bilgileri saklıyorum:

$values = "First Name: $fName\r\n";

$values .= "Last Name: $lName\r\n";

$values .= "Address: $address\r\n";

vb

Bu benim metin dosyasına yazmak için kullanabileceğiniz kod:

$fp = @fopen("person.data", "w") or die("Couldn't open person.data for writing!");
$numBytes = @fwrite($fp, $values) or die("Couldn't write values to file!");

@fclose($fp);

Any ideas on why it would only save the first $values ($fName) variable but not the rest of them? It actually saves the first part of the $values string for all of them (so I see Last Name:, Address:, vb on separate lines in the text file) but the called variables $lName and $address do not appear.

0 Cevap