xxxxxxxxxx
<html>
<body>
<h1>Sample Form</h1>
<form action="./submit-username.php" method="post">
<label for="username">Username</label><br>
<!-- Kullanıcının içindeki değeri değiştirememesi için <input> etiketine readonly özelliğini ekledim. -->
<input type="text" id="username" name="username" value="kaneki kudo" readonly><br><br>
<input type="submit">
</body>
</html>