CGI to PHP Converter

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • johnlanglois
    New Member
    • Jan 2008
    • 3

    CGI to PHP Converter

    The client's webpage posts a CGI string to my php page that contains a
    couple of fields that I would like to retrieve. The format looks similar to
    a php variable transfer, i.e. "?custom%20kt_l ogin_id=41&cust om%
    20kt_login_rand om=more stuff".

    Is there a javacript or php function that would allow me to capture this
    data and parse out the values. What I really want is that login id.

    Thanks.
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    This is just a normal url parameter string. You can capture in in your PHP program via the $_GET array.

    Ronald

    Comment

    Working...