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
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
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
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
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
5 matches
Mail list logo