我在html文档中使用了一个表单,我有这个输入:
<input type="hidden" name="codigo">
<xsl:attribute name="value">
<xsl:value-of select="codi"/>
</xsl:attribute>
</input>
例如,如果我按下URL中的提交按钮,我看到:?codigo=4
,在我的php代码中,我在document.xml中为select finca添加了一个子“comentario”:
$finca = $fincas->finca[$_GET['codigo']]->comentarios->addChild('comentario');
问题是我的服务器无法将$ _GET参数处理成数组,我需要在特定的finca中添加子项。我尝试使用像'1'这样的固定参数进行操作。它正在工作。
有解决方法吗?
答案 0 :(得分:0)