Hi!

A simple example:

      req = new QxRequest("xmlwrapper.php", "GET", "text/plain");
      with (req) {
        setAsynchronous(false);
        setRequestHeader("Content-Type", 
"application/x-www-form-urlencoded");
        setParameter("action", "getSenderXML");
        setParameter("category", category);
        setParameter("searchword", tfSearchword.getValue());
        addEventListener("completed", function(e) { 
displayXML(e.getData().getContent()); } );
        send();
      };

Regards

Marco



gmcms schrieb:
> Thank you.
> I've no problem with php ;-)
> I understand your answer, but I'm just surprised because when I code with a
> lot of ajax libraries I can send the uri of a php script and give params to
> run and send the anwser to display it.
> Is it a strategy choice for qooxdoo to not be able to do that ?
> --
> View this message in context: 
> http://www.nabble.com/qooxdoo-php-ajax-t1832970.html#a5002705
> Sent from the qooxdoo-devel forum at Nabble.com.
>
>
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>   


-- 
Needful GbR   Johann-Kalb-Straße 14a   Telefon +49 (0) 26 24 / 95 29 301
              56203 Höhr-Grenzhausen   Telefax +49 (0) 26 24 / 95 29 303



Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to