Skip to content

Instantly share code, notes, and snippets.

View lastrileonardo-stack's full-sized avatar

lastrileonardo-stack

View GitHub Profile
<?php
header("Content-Type: application/rss+xml; charset=UTF-8");
$url = "https://www.astegiudiziarie.it/panoramica-vendite/provincia-di-prato";
$html = file_get_contents($url);
preg_match_all('/<div class="property-item(.*?)<\/div>\s*<\/div>/s', $html, $matches);
echo "<?xml version='1.0' encoding='UTF-8'?>";
echo "<rss version='2.0'><channel>";
<?php
header("Content-Type: application/rss+xml; charset=UTF-8");
$url = "https://www.astegiudiziarie.it/panoramica-vendite/provincia-di-prato";
$html = file_get_contents($url);
preg_match_all('/<div class="property-item(.*?)<\/div>\s*<\/div>/s', $html, $matches);
echo "<?xml version='1.0' encoding='UTF-8'?>";
echo "<rss version='2.0'><channel>";
<?php
header("Content-Type: application/rss+xml; charset=UTF-8");
$url = "https://www.astegiudiziarie.it/panoramica-vendite/provincia-di-firenze";
$html = file_get_contents($url);
preg_match_all('/<div class="property-item(.*?)<\/div>\s*<\/div>/s', $html, $matches);
echo "<?xml version='1.0' encoding='UTF-8'?>";
echo "<rss version='2.0'><channel>";