Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as PHP by fix ( 15 years ago )
<?
$serialized_data = file_get_contents('http://api.ereality.ru/holiday.ser');
$holiday_data = unserialize($serialized_data);
foreach($holiday_data as $index => $val)
{
if (intval($val) > 90000 )
{
echo "<table width='100%' cellspacing='0' cellpadding='0'><tr><td align='center'><img align='center' src='http://img.ereality.ru/p/pro".$index."_5.jpg'></td></tr>
<tr><td align='center'><p align='center' style='color:#000'>Это праздник.</p></td></tr></table><br>";
}
else
{
echo "<table width='100%' cellspacing='0' cellpadding='0'><tr><td align='center'><img align='center' src='".BASEDIR."images/empty.gif'></td></tr>
<tr><td align='center'><p align='center' style='color: #000000;'>Нет праздников.</p></td></tr></table>";
break;
}
}
?>
Revise this Paste
Parent: 30135