That should be your return then, try this updated function with your
original hook

function isbanned(ip){
    var request = new Http('http://anyplace/sql/banned_ips.php');
    request.set('method', 'POST');
    request.writeData('password', 'any');
    request.writeData('ip', ip);

    return request.getContent();
}

If that doesn't work then I'm out of ideas. BTW where is the documentation
for Http? I couldn't find it

-- 
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to ape-project@googlegroups.com
To unsubscribe from this group, send email to
ape-project+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/

Reply via email to