M mehwish New member Sep 17, 2009 #1 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.
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.
D DzSoundNirvana New member Sep 17, 2009 #2 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">
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">