The_Return
01-28-2010, 04:08 PM
I'm trying to display sign in data from signing in on aim....when you click start it loads aim.php included in the aim is the aimtoc which echos the data out instead of it displaying all the data after its done loading I want it to show it as it is happing...so instead of using echo should I use a variable example: eDisplay("PHPTOCLIB v" . VERSION . " Object Created"); then how would I use jquery to display it live?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Aim Bot</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$("#btnsend").click(function() {
$('#botlog').load('aim.php');
return false;
});
});
</script>
</head>
<body>
<button id="btnsend">Start</button>
<div align="center" id="botlog"></div>
</body>
Aimtoc file can be seen here http://pastie.org/798830
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Aim Bot</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$("#btnsend").click(function() {
$('#botlog').load('aim.php');
return false;
});
});
</script>
</head>
<body>
<button id="btnsend">Start</button>
<div align="center" id="botlog"></div>
</body>
Aimtoc file can be seen here http://pastie.org/798830