Can I pass values or objects from classic asp to php? New to classic asp and would appreciate any suggestions or techniques.
you can use the get/post valye even if you are on asp and you have another page in php you can submit something like test.php?value=x&value2=whatever or by forms ...
I would say the easiest way to do this is to do it via URL's. So say you have an object in ASP called email, pass it to PHP by making a link that has this on the end phpscript.php?email=your.email@email.com That way, ASP can fill out the dynamic content in the link, and PHP can accept it easily.