RE: [PHP] Passing values from ASP to PHP

2001-03-01 Thread Michael Geier
OTECTED]] Sent: Thursday, March 01, 2001 9:47 AM To: [EMAIL PROTECTED] Cc: PHP General List Subject: RE: [PHP] Passing values from ASP to PHP Hi, To enumerate the key/value in ASP from the form you'd do this <% dim element dim objForm dim strURL '/* We're creating an object

RE: [PHP] Passing values from ASP to PHP

2001-03-01 Thread Opec Kemp
Hi, To enumerate the key/value in ASP from the form you'd do this <% dim element dim objForm dim strURL '/* We're creating an object so that it won't matter which ' * HTTP method the previous form uses. ' */ If LCase(Server.Request("HTTP_METHOD")) = "post" Then Set objForm = Request.Fo

AW: [PHP] Passing values from ASP to PHP

2001-03-01 Thread Sebastian Stadtlich
it can be done with apache even easier, but as you use asp, i assume you use iis Sebastian > -Ursprungliche Nachricht- > Von: Isaac [mailto:[EMAIL PROTECTED]] > Gesendet: Mittwoch, 28. Februar 2001 22:08 > An: [EMAIL PROTECTED] > Betreff: [PHP] Passing values from ASP to PH

Re: [PHP] Passing values from ASP to PHP

2001-02-28 Thread Thomas Deliduka
Well, if it's a query string it's easy... In the ASP page you do: <% Response.Redirect("myscript.php?" & Request.ServerVariables("QUERY_STRING")) %> If it's posted form data do this: <% Dim Querystring Querystring = "" For each Item in Request.Form if Querystring = "" Then Querystr

[PHP] Passing values from ASP to PHP

2001-02-28 Thread Isaac
I've been given a project that I want to use PHP with, but unfortunately there are unchangable hard-coded values that point clients to an ASP script residing on our server. Here's what I want to do, and I don't really know how to do it: I want to pass all the key/value pairs that are passed to th