Jump to content
  • 0

Проблема с выводом file_get_contents


Reign2001
 Share

Question

Здравствуйте..Вопрос вот в чём..Функция file_get_contents выводит нужную информацию во всех подкатигориях в шаблоне но не на главной странице..Как с этим бороться??

Сайт http://rivierahoteis.com/

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

Извини..

Я в tpl шаблон друпал добавил код gismeteo.ru.

<?php

// $Id: page.tpl.php,v 1.18.2.1 2009/04/30 00:13:31 goba Exp $

?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">

<head>

<?php print $head ?>

<title><?php print $head_title ?></title>

<?php print $styles ?>



</head>

<body>





<div id="main">

<div id="top_menu_wrapper">

<div id="top_menu">

<div id="search_box">

<form action="#" method="post">

<span>Поиск:</span>

<input type="text" name="search" />

<?php // print $search_box ?>

</form>

</div>

<ul id="navigation">



<?php if (isset($primary_links)) : ?>

<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>

<?php endif; ?>





</ul>

</div>

</div>

<div id="body_wrapper">

<div id="header">

<a href="/" id="header"></a>

</div>



<div id="body_content">



<div id="block_menu">



<div id="block_menutitle">

<div id="block_mn_title_round_top">Меню</div>

</div>



<div id="block_mn_body">

<?php if (isset($secondary_links)) : ?>

<?php print theme('links', $secondary_links, array('class' => 'secondary-links')) ?>

<?php endif; ?>

</div>



<div id="block_mn_bottom"></div>



</div>



<div id="block_tours">



<div id="block_tours_top"><span>Туры по Ривиере</span></div>



<div class="block_body">

<?php

$result = db_query("SELECT `nid` FROM `node` WHERE type like '%tour%' order by `nid` desc LIMIT 3");

while ($row = db_fetch_object($result))

{

$displayContent = node_load($row->nid);

echo "<div class='block_entry'>";



echo substr($displayContent->teaser,0,250)."...</div>";



$res=db_query("select * from `node_images` where `nid`='".$row->nid."' limit 0,1");

$img=db_fetch_object($res);



if ($img)

{

echo "<a href='/node/".$row->nid."'>";

echo "<img src='/".$img->filepath."' />";

echo "</a>";

}



?>



<?php } ?>

</div>





<div id="block_body_round_bottom"></div>



</div>





<div id="block_pogoda">

<div id="block_title_pog"><span>Погода на Ривиере</span></div>



<div class="block_body">

<div id="today">
<center>
<?
$a = file_get_contents("http://rivierahoteis.com/pogoda1.php");
echo ($a);
?>


</center>
</div>




<div id="tomorrow">



</div>

</div>



<div id="block_bt_pogoda"></div>

</div>



<div id="final">



<?php print $content ?>





<div id="block_news">

<div id="block_title_news"><span>Новости</span></div>

<div class="block_body">



<?php





$result = db_query("SELECT `nid` FROM `node` WHERE `type` ='news' order by `nid` desc LIMIT 10");

while ($row = db_fetch_object($result))

{

$displayContent = node_load($row->nid);

echo "<span class='date'>".date("d.m.Y",$displayContent->created)."</span>";

echo "<a href='/node/".$row->nid."' class='descr'>".$displayContent->title."</a>";

}

?>



</div>

<div id="block_news_bt"></div>

</div>



<div class="clear"></div>



<div id="footer">

<?php print $footer_message ?>





</div>

<div class="clear"></div>

</div>

</div>

</div>

</div>





<?php print $closure ?>

</body>

</html>

Но на всех страницах отображается а на главной нет..

P.S.

Если не тот раздел прошу перенести..

Link to comment
Share on other sites

  • 0

научитесь локализовывать проблемный участок!

вот это?

<?
$a = file_get_contents("http://rivierahoteis.com/pogoda1.php");
echo ($a);
?>

UPD: почему бы просто не использовать конструкцию include(""); ?

Edited by rus
Link to comment
Share on other sites

  • 0
проблема скорее всего с путями.

для того чтобы избежать этого, можно использовать глобальный массив $_SERVER['']

Спасибо..Но всё равно на главной не выводится блок..

Edited by Reign2001
Link to comment
Share on other sites

  • 0

нет, не правильно!

так вот надо:

<?
include ("http://".$_SERVER['HTTP_HOST']."/pogoda1.php");
?>

только вам надо эту страничку привести к другому виду:

1) убрать подгружаемые стили и js из head этой странички и поместить в основной шаблон в head.

2) оставить на подгружаемой страничке только все что между <table></table>

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