<html>
<head>
<title>Import Movie</title>
<script language="Javascript">
function importMovie(ttcode){
try {
var xhr = false;
// Mozilla/Safari
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} // IE
else if (window.ActiveXObject) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.open('GET', "http://localhost/CraigWorks/api/import?imdb=" + ttcode, false);
xhr.send();
} catch (e) {
}
}
</script>
</head>
<body>
<script type="text/javascript">
importMovie("tt0118571");
importMovie("tt0114319");
importMovie("tt0106977");
</script>
</body>
</html>
It looks like you're new here. If you want to get involved, click one of these buttons!