I’ve been working on a project to offer syndicated image feeds—think “picture of the week” that people can embed on their sites, and it updates automatically every week. I built a quick prototype using a basic HTML template (just a simple layout with the image embedded), and it works fine for showing the latest image. The idea is to keep the same filename and dimensions, so all I need to do is swap out the image file every week, and any page that links to it will automatically show the new one.
What’s the Right Term?
Searching for “syndicated images” mostly turns up adult sites or lottery scams, so I’m wondering if there’s a better name for this. I’ve tried “picture of the week”, “dynamic image widget”, and “rotating banner service”, but none seem to capture it exactly. Is there an industry term for a lightweight, automatically updating image feed?
Modern Approach
If you’re doing this today, the old table-based layout is replaced by semantic HTML5 and CSS Grid or Flexbox for a clean, responsive design. For example, you can wrap the image in a <figure> tag and control layout with CSS. The backend can be as simple as a PHP script that reads the latest image from a directory and serves it with proper headers:
<?php
// Serve the latest image from a predefined folder
$imageDir = 'images/';
$latest = glob($imageDir . '*.{jpg,jpeg,png,gif}', GLOB_BRACE)[0];
header('Content-Type: ' . mime_content_type($latest));
readfile($latest);
?>
Then embed it as <img src="feed.php" alt="Picture of the Week"> on any site. This way, you only update the file on your server, and everyone’s embed refreshes automatically.
Mechanics & Hosting
Since Xisto offers free cPanel hosting with 1GB space, you can easily set up a dedicated folder for your image feed, use a cron job to rename or move a new image weekly, and even add caching headers. The credit system means you can earn points by posting on the forum and use them to keep your hosting active.
Ideas for Expansion
- Add a JSON endpoint with image metadata (caption, date) so developers can build custom widgets.
- Offer different sizes or aspect ratios by using CSS object-fit on the client side.
- Make it interactive: let users guess the subject from a blurred thumbnail before revealing the full image.
Has anyone else created something like this? What did you call it, and how did you handle the updates?

