一直在尝试让这个工作。我想要的是,当用户单击create Card
表单时应该弹出多个字段,以便他们可以查看$key[2]
和编写问题和答案。
如果有人能指出我正确的方向来使用 javascript 创建这个表单并解释如何将变量从该表单返回到 php,那就太棒了。我正在尝试使用xmlhttprequest
,我不知道这是否最好。
<?php
if (isset($myNotes)) {
foreach ($myNotes as $key) {
Print "<li>$key[2] <a href=''><dif onclick='createCard()'>(Create Card)</dif></a></li>";
}
}
?>
function createCard()
{
xmlhttp=new XMLHttpRequest();
var question;
var answer;
question=prompt("Enter Q:","");
answer=prompt("Enter Answer:","");
xmlhttp.open("GET","control.php?q="+question, true);
xmlhttp.send();
}