drgmszo076956 2012-12-07 11:14
浏览 51
已采纳

如何从xml节点动态创建php页面,然后将索引页面链接到它们

I'm looking for a way to create a details page dynamically that correspond to an XML feed with PHP.

For example, say this is my xml feed:

<root>
   <person>
      <name>Jim</name>
      <desc>A hard working guy.</desc>
    </person>
    <person>
      <name>Tom</name>
      <desc>As lazy as an obese house cat.</desc>
    </person>
</root>

And say this was my php/html:

<?php
$dom = simplexml_load_file('people.xml');
?>

<ul>
<?php
for ($i = 0; $i < 10; $i++) {
   $name = $dom->person[$i]->name;
   $desc = $dom->person[$i]->desc;
$post = 
   '
    <li>
        <a href="details.php">'.$name.'</a>
        <p>'.$desc.'</p>
    </li>
    ';

 echo $post;
}
?>
</ul>

I would like to have that <a> tag that's being created link to a page that has the content of the corresponding person from the XML.

So I guess my two questions would be, how do I dynamically create a page with xml data, and how do I set the href attribute in the code above to link to it, in php?

Thank you for your insights and answers! :)

展开全部

  • 写回答

1条回答 默认 最新

  • doushui3061 2012-12-07 11:35
    关注

    Try to use create using php in build function file_put_content(filename, content)

    <?php
    for ($i = 0; $i < 10; $i++) {
       $name = $dom->person[$i]->name;
       $desc = $dom->person[$i]->desc;
       $file_name = 'usercontent'.$i.'.php';
       $post = 
       '
        <li>
            <a href=$file_name>'.$name.'</a>
            <p>'.$desc.'</p>
        </li>
        ';
         file_put_contents($file_name, $post);      
     echo $post;
    }
    

    here i have created a files with usercontent0.php, usercontent1.php and so on you can also specify some other random filenames and any thing that you want to add to the page will be added to the $post value

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部