Jump to content
  • 0

Не отображаются полученные данные


Glebr
 Share

Question

Не отображаются полученные данные! Подскажите пожалуйста в чём может быть причина... я меняю кодировку у полученных данных, может в этом проблема?

Вот собсно код:

<?php
$link1="<h3><a href=";
$link2=">";
$link3="</a>";
$rss = simplexml_load_file ( 'http://avto.ru/rss/rub_14.rss' );
// print_r( $rss );
echo '<h1><a href="'.$rss->channel->link.'">'.$rss->channel->title.'</a></h1>'."\n";
echo '<table>'."\n";
foreach ( $rss->channel->item as $item )
{
echo '<tr valign="top">';

$image = $item->enclosure;
echo '<td>';

echo '</td>';
echo '<td>';

echo iconv('utf-8', 'windows-1251', $link1.$item->link.$link2.$item->title.$link3);

echo iconv('utf-8', 'windows-1251', $item->description);

echo '</td>';
echo '</tr>'."\n";
echo '<tr><td colspan="2"> </td></tr>'."\n";
}
echo '</table>';
?>

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

иероглифами показывает только то, что выводит $rss->channel->title

для остального достаточно выбрать нужную кодировку в браузере

или дописать в хтмл нужный мета-тег

или...

вобщем способов целая куча.

Link to comment
Share on other sites

  • 0
иероглифами показывает только то, что выводит $rss->channel->title

для остального достаточно выбрать нужную кодировку в браузере

или дописать в хтмл нужный мета-тег

или...

вобщем способов целая куча.

так у меня дописано вроде

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy