Use PHP and MySQL. I have 2 websites, and want to show content on page of first website in the iframe of second website. In the page of first website, it requires POST variable submitted by form. How to sent the POST variable to iframe?
My concept in page of second website is something like this:
<html>
<body>
<form method="post" action="iframe1">
<select name="choice">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</form>
<iframe name="iframe1" src="first_website.com/page1.php?????????></iframe>
</body>
</html>
How to make iframe shows content of page using the choice variable?