PHP4でXML
こんにちは。PHPでXMLファイルを書き換えたいのですが、サーバ環境がPHP5ではありません。以下のようにHTMLと同じ方法でphpファイルを読み込むことは不可能なのでしょうか?だとしたら他に良い方法はありますか?困っています。どなたか助けてください。よろしくお願いします。
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>○○1</title>
<link>http://○○</link>
<description>ウェブサイトに掲載されている最新の情報を掲載しております。</description>
<language>ja</language>
<copyright>Copyright (c) 2007 ○○, Inc. All Rights Reserved.</copyright>
<pubDate><?php include("../rss/date.php"); ?></pubDate>
<item>
<title>ニュースリリース</title>
<link>http://○○</link>
<description><?php include("../rss/news.php"); ?></description>
<pubDate><?php include("../rss/date.php"); ?></pubDate>
</item>
<item>
<title>商品一覧ページ</title>
<link>http://○○</link>
<description><?php include("../rss/prodact.php"); ?></description>
<pubDate><?php include("../rss/date.php"); ?></pubDate>
</item>
<item>
<title>沿革</title>
<link>http://○○</link>
<description><?php include("../rss/corporation.php"); ?></description>
<pubDate><?php include("../rss/date.php"); ?></pubDate>
</item>
</channel>
</rss>
お礼
回答ありがとうございます 返答遅くなってすいません たしかにiframeで構成されていますね^^; 確認不足でした。。。すいません。。