某些分数会在javascript中处理,然后通过以下方式发送:
window.location.href="scores.php?Result="+result+"&slain="+slain;
接下来,他们可以通过DUT通过GET调用php。
$name_value = $xml->createTextNode($_GET['name']);
所有XML写作和阅读工作都应该正常工作。
但问题是尝试将php文件显示为iframe。
当用户结束程序时,分数将显示,链接将如下所示:
scores.php?Result="1"&slain="5"
但是如何在iframe中显示类似的东西,因为该查询字符串将始终是随机的。 虽然最终用户始终可以看到整个得分表,但我们的想法就是将整个表格显示为iframe。
如何将此文件显示为iframe?
<iframe src ="functions.php" width="100%" height="100"/>
// gives errors at src declartion
答案 0 :(得分:0)
@Maelr:您可以动态创建iframe
-
<script type="text/javascript">
// processing of form / scores and setting of result and slain variables...
// create iframe
var element = document.createElement("iframe");
element.setAttribute('id', 'scoresframe');
document.body.appendChild(element);
element.setAttribute('src', 'scores.php?Result=' + result + '&slain=' + slain);
</script>