Thisis what I do to use php scripts in my asp scripts.
I have the php script do what I need it to do and spit out onto the php page what I want displayed.
I then open my asp page and where I want the php data to be displayed I do the following:
Dim objHttp
set objHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
objHttp.open "GET", "http://www.your_website.com/your_file.php", false
objHttp.Send
Response.Write objHTTP.ResponseText
Set objHTTP = Nothing
Just replace the url with the url of your php file and it will display whatever that php file spits out. I do that on http://www.coastercrazy.com/<