Posted by J.O. Aho on 09/14/05 20:17
Oli Filth wrote:
> Steve said the following on 14/09/2005 16:12:
>
>>> Once my PHP script has run - is there anyway that I can pass control
>>> over the the asp script?
>>
>>
>>
>> Provided there is no output from the PHP script before handover:
>>
>> header( "http://www.example.com/myscript.asp" );
>
> ^
> ^
> header("Location: http://www.example.com/myscript.asp");
> =========
>
>
You may need to send some variables too, this can be done with a cookie or
just with the header(), eg
header("Location: http://www.example.com/myscript.asp?var1=val1&var2=val2");
But the best is of course to convert the visualbasic scripts to php, you get
both speed and stability. Take a look at asp2php.
//Aho
Navigation:
[Reply to this message]
|