What potential issues could arise from using PHP to generate dynamic content from a MySQL database?

One potential issue that could arise from using PHP to generate dynamic content from a MySQL database is SQL injection attacks. To prevent this, you should always use prepared statements with parameterized queries to sanitize user input.

// Connect to the database
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "myDB";

$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

// Prepare a statement
$stmt = $conn->prepare("SELECT * FROM users WHERE username = ?");
$stmt->bind_param("s", $username);

// Set parameters and execute
$username = $_POST['username'];
$stmt->execute();

// Get the result set
$result = $stmt->get_result();

// Output the data
while ($row = $result->fetch_assoc()) {
    echo "Username: " . $row['username'] . "<br>";
}

// Close the statement and connection
$stmt->close();
$conn->close();