To clarify want i am trying to do, i am trying to send data to an external webserver using the command
fsockopen. I have a form submit example below but i do not know want data is actually sent from this page as i want to build the output from this page into a string so i can send using the fsockopen command.
<form method="post" action="
Example Web Page">
<P>Username:<br>
<INPUT name="Username" type="text"></P>
<P>Password:<br>
<INPUT name="Password" type="password"></P>
<P>Account:<br>
<INPUT name="Account" type="text"></P>
<P>Sender :<br>
<INPUT name="Originator" type="text"></P>
<P>Recipient:<br>
<INPUT name="Recipient" type="text"></P>
<P>Message:<br>
<input type="submit" value="Send">
</form>
Essentially i need to know the output from this form/submit so i can send the same data to a webserver via the fsockopen and fputs commands.
Cheers
Andrew