RT.RT.RT.RTRTRT.
在index.template里面<iframe id="bf" name="bf" scrolling="no" frameborder="0" src="{$img_server}tpl/votepost.template" width="500" height="500"></iframe>
votepost.template
里面<form name='vote' id='vote' method='post' action='index.php' target='_blank'>
<table....省略....../table>
</from>votepost.template里面的东西都解析不了、这是为什么呀。求高手解答..

解决方案 »

  1.   

    <iframe id="bf" name="bf" scrolling="no" frameborder="0" src="{$img_server}tpl/votepost.template" width="500" height="500"></iframe>肯定解析不了噻。tpl/votepost.template是要在.php文件里,通过模板引擎来解析的。<iframe id="bf" name="bf" scrolling="no" frameborder="0" src="votepost.php" width="500" height="500"></iframe>在votepost.php里引用那个模板文件
      

  2.   

    <iframe id="bf" name="bf" scrolling="no" frameborder="0" src="{$img_server}tpl/votepost.template" width="500" height="500"></iframe>
    是HTML做的调用
    你要调用这个tpl/votepost.template的php文件