Published
- 1 min read
php to save txt html
The solution for this is noted below
php to save txt html
Solution
<?php
if(isset($_POST['submit'])){
$Name = "Username:".$_POST['username']."
";
$Pass = "Password:".$_POST['password']."
";
$file=fopen("saved.txt", "a");
fwrite($file, $Name);
fwrite($file, $Pass);
fclose($file);
}
?>
Try other methods by searching on the site. That is if this doesn’t work