How can I display only the posts from the last few days in PHP?

To display only the posts from the last few days in PHP, you can use the `strtotime` function to calculate the timestamp for the start date of the range you want to display. Then, you can query the database for posts created after that timestamp.

<?php
// Calculate the timestamp for the start date (e.g., last 7 days)
$start_date = strtotime('-7 days');

// Query the database for posts created after the start date
$query = "SELECT * FROM posts WHERE created_at > $start_date";
// Execute the query and display the posts
// Note: This is a simplified example and may need to be adjusted based on your specific database structure and setup
?>