Hi Jean-Baptiste, thank you for your reply.

It seems the RPC for PHP will require I install a back-end on my hosts
web-server, which I do not have access to ( my hosting plan is cheap ), BUT
fortunately I think I can by-pass the need for it - I figured out how to
execute a remote PHP script using my Qooxdoo client app and capture the
response.  :)  I just had to make an HTTPRequest to the PHP script, retrieve
the result in getResponseText(), and the parse it.  I should be able to make
my MySQL Manager now with just this capability.

myipaddress.php

<?php
 
echo( $_SERVER["REMOTE_ADDR"]);

?>

.. and the function in my code...

function GetIPAddress ()
{
        var request = new qx.io2.HttpRequest("myipaddress.php");
        
        request.send();
        
        request.addListener("load", function(e)
        {                       
                labelResult.set({
                        value: "Your IP: " + request.getResponseText(),
                        rich : true,
                        width: 200
                        });
        });
};
-- 
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Need-some-general-recommendations-tp5281977p5282256.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to