Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は現在、フォームが記入されたときに発生する以下の fwrite を持っています。フォームが記入された現在の日付を fwrite に入れたいのですが、どうすればよいですか?
fwrite($fh, "$firstname\r\n $lastname\r\n $email\r\n $zipcode\r\n $feedback\r\n \r\n");
このようにしてみてください:
$date=date("Y-m-d H:i:s"); fwrite($fh, "$firstname\r\n $lastname\r\n $email\r\n $zipcode\r\n $feedback\r\n $date\r\n \r\n");