Posts by Carlos • 11 points
1 post
-
0
votes2
answers1307
viewsQ: Save form data in TXT (PHP)
Hello, good afternoon, sir! I have the following code: <?php if (isset($_POST['texto'])) { $texto = $_POST['texto']; $arquivo = fopen('msg.txt', 'w'); fwrite($arquivo, $texto); fclose($arquivo);…