What is the potential issue with using the value attribute in an input element for submitting form data in PHP?

The potential issue with using the value attribute in an input element for submitting form data in PHP is that it can be manipulated by users before submitting the form, leading to security vulnerabilities such as injection attacks. To solve this issue, it is recommended to use the placeholder attribute for displaying default values in the input field, and retrieve the form data using PHP's $_POST or $_GET superglobals.

<form method="post" action="process_form.php">
  <input type="text" name="username" placeholder="Enter your username">
  <input type="password" name="password" placeholder="Enter your password">
  <button type="submit">Submit</button>
</form>
```

In the process_form.php file:

```php
$username = $_POST['username'];
$password = $_POST['password'];
// Process the form data securely