How to send results from Captivate 7 to PHP?
Hello!
I need to send quiz results to PHP server. In Captivate 5 i did it with settings reporting by e-mail, than parcer data and send results to PHP server.
In Captivate 7 this settings unevalible.
How to do it now?
I have tryed some cases:
1. Use settings Internal Server - but it show dialog box where user have to put his name and e-mail. I dony need it! My script knows who try to pass quiz.
2. I try to use this code :
| <script type="text/javascript"> | ||
| document.getElementById('Captivate').focus(); | ||
| document.Captivate.focus(); |
function getData(){
| var cp = document.Captivate; | ||
| cp.cpEIGetValue("m_VarHandle"); |
}
| </script> |
| <a onclick="getData();" href="#" > get data</a> | |
But it generate erorr Uncaught TypeError: undefined is not a function
on line cp.cpEIGetValue("m_VarHandle");
What can i do ?