How can the LIMIT clause be used to output data from a specific row in a MySQL table in PHP?

To output data from a specific row in a MySQL table in PHP, you can use the LIMIT clause in your SQL query. The LIMIT clause allows you to restrict the number of rows returned by a query. By specifying the row number you want to retrieve, you can effectively output data from a specific row in the table.

// Connect to the database
$connection = mysqli_connect("localhost", "username", "password", "database");

// Query to retrieve data from a specific row using LIMIT
$query = "SELECT * FROM table_name LIMIT 1, 1"; // Retrieve data from the second row

$result = mysqli_query($connection, $query);

// Loop through the results and output the data
while($row = mysqli_fetch_assoc($result)) {
    echo "Column 1: " . $row['column1'] . "<br>";
    echo "Column 2: " . $row['column2'] . "<br>";
    // Add more columns as needed
}

// Close the connection
mysqli_close($connection);