Include external php

pmflav

Active member
I am using xenporta and widget framework and we need to include and external script on our page.

I am using the html block to do this.

Code:
<head>
<script>
$(document).ready(function(){
$('#test3').load('http://xxxxxxxxxt/msfc/attack.php?multi=anzar');
});

$( document ).ajaxStop(function());

</script>
</head>
<body>
<div id="test3"></div>
</body>

This is causing the AjaxProgress to keep loading. Anyone know of a better way to do this.

Any help would be great. Thanks.
 
Top Bottom