in reply to Re: Re: Re: Re: Where to call script
in thread Where to call script

You are passing variable NAMES, but not their Values.

If you want to di it via redirect, do something like:

redirect ("http://your.url.here.com?Name1=value1&name2=value2")

Personally, I dislike that style because it exposes the values, and allows users to tamper with them. I would prefer info passing via session variables (for asp pages), or via a POST for CGI.

  • Comment on Re: Re: Re: Re: Re: Where to call script