I am doing a project which records video from Ip camera . I used ajax to run my program back end which successfully records video using code from process.php file. However i am trying to make program more dynamic for each user and I am facing problem passing parameters to my next page i.e record.php the 2 parameters i want to pass are email & url i tried the following way to pass variables to my process.php using ajax link :
xmlhttp.open('GET','http://localhost/IPCAM/process.php?sh=1&url=<?php echo $url ?>&email=<?php echo $email ?>',true);
Here is the complete script. Can anyone suggest me proper way to write the above url to work dynamically.
<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>