is it possible interface Crawler script with another script that load php output into the div? I want display php output in a scrolling marquee. If yes, how to connect it? Below is example, php script print the output inside div:
Code:
<html>
<head>
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script>
setInterval(function () {
$('#reload').load('track.php');
}, 10000);
</script>
</head>
<body>
<div id="reload"></div>
</div>
</body>
</html>
Bookmarks