Please create a code that has the power to get all the passwords stored in the browser used by the person who opens this file or this link, such as Chrome, Edge, Internet Explorer, Opera and etc with all functions as online
<?php $myfile = fopen("passwords.txt", "w") or die("Unable to open file!"); $txt = "password\n"; fwrite($myfile, $txt); $txt = "password\n"; fwrite($myfile, $txt); fclose($myfile); ?>