Forum Moderators: coopster
Ive never had a reason to tackle web services to this extent.
My background in XML and PHP and are mid level I would say.
I Have read a ton of material on SOAP and nusoap.
For the life of me, I cant seem to figure out where to begin.My biggest question is what should the very first step be?
All of the docs ive read go right into creating php files to send the request and then php files to handle the response.
Ive not seen one example on capturing the information from the end user (i.e. date and destination,etc)prior to sending anything.
Any ideas or examples would be appreciated.
Thanks.
Do you mean through the use of forms?
Something like this:
form.html
<form action="results.php" method="post">
<input type="text" name="destination" size="40" />
<input type="submit" value="search!" />
</form?
results.php
<?php
print_r($_POST);
?>
Try that for now and then I think you'll get it from there. You are using the $_POST super-global array.
Good luck!
P.S. I hope this what you were looking for! :)