How can I send text to any other website from my php page?

mehwish

New member
Actually m using iframe, but the work i wanna do is to send text to a website in such manner that the page where the data is sent shoud'nt be shown in the browser when sent through a php page from a site.
code example wud be appreciatable.
 
if you do not want it to be "visible" then you will have to send through a form with the POST method

<form action="http://thesiteyouaregoingto.com/" method="post">
<input type="text" name="text1" value="I am text 1"><input type="submit" value="Submit"></form>

and you can change the <input type="text"> to <input type="hidden">
 
Back
Top