You are not logged in.
I'm doing a little something in ASP at work, and I have to pass some vars to a PHP page on a remote server. I'm using the querystring to pass the vars. Then, I need to collect a result.
What is the best way to do this:
Add a user to the DB by referencing the remote PHP server:
http://phpdomain.com/newuser.php?fname=Ben&lname=Curry
This page will then return a UserID for the added user.
It will add Ben Curry to the DB, then return, say, 6. What is the best way to do this, and still have the ASP code continue executing?
I need to have a remote page process without actually forwarding a user there...will I need to user a sort of AJAX-y setup without JS, or something...I hope not.
Any help would be greatly appreciated.
Offline