Forum Discussion

Robert_47833's avatar
Robert_47833
Icon for Altostratus rankAltostratus
Nov 22, 2011

what is difference between [URI::query [HTTP::uri]]and [HTTP::query]

hi ,dear irule

 

what is difference between [URI::query [HTTP::uri]]and [HTTP::query]

 

1 Reply

  • As far as I'm aware, there is no difference. URI::query is most useful to parse a specific query string parameter value:

     

     

    Parse the login parameter value from the URI and save it in $login_name

     

    set login_name [URI::query [HTTP::uri] login]

     

     

    Aaron