我正在做一个从 Ip camera 录制视频的项目。我使用 ajax 运行我的程序后端,它使用 process.php 文件中的代码成功录制视频。但是,我正在尝试使每个用户的程序更加动态,并且我在将参数传递到我的下一页时遇到问题,即 record.php 我要传递的 2 个参数是电子邮件和 url 我尝试了以下方式将变量传递给我的进程。 php 使用 ajax 链接:
xmlhttp.open('GET','http://localhost/IPCAM/process.php?sh=1&url=<?php echo $url ?>&email=<?php echo $email ?>',true);
这是完整的脚本。谁能建议我正确的方法来编写上述 url 以动态工作。
<script type="text/javascript">
function st()
{
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert('stored');
}
}
xmlhttp.open('GET','http://localhost/IPCAM/process.php?sh=1&url=<?php echo $url ?>&email=<?php echo $email ?>',true);
xmlhttp.send();
setTimeout('st()',5000);
}
</script>