加载页面时出错(使用XAMPP)
Strict Standards: Non-static method PEAR::raiseError() should not be called statically, assuming $this from incompatible context in C:\xampp\php\pear\HTML\Template\Flexy.php on line 692
Could not open the template: ''
Please check the file permissions on the directory and file
我不明白这个错误。它是什么意思,我错了什么? 可能是,我的模板部分中没有“GO”?
我在我的temlate中不确定这个,我能做到吗?是的吗?
<form action="{formaction}">
<table>
{foreach:form,f}
<tr>
<td>{f.desc}</td>
<td>
{if:f.textarea}
<textarea name="{f.type}" cols="{f.cols}" rows="{f.rows}">{f.value}</textarea>{end:}
{if:f.checkradio}
{foreach:f.checkradio,c}
<input type="{f.type}" name="{f.name}" value="{f.value}" {c.choosed}>{end:}
{if: f.numrange}
<input type="{f.type}" name="{f.name}" value="{f.value}" min="{f.min}" max="{f.max}">{end:}
{if: f.normal}
<input type="{f.type}" name="{f.name}" value="{f.value}" min="{f.min}" max="{f.max}">{end:}
</td>
</tr>{end:}
</table>
</form>