I have a html form with post method something like this :
<form action="xml.php" method="post">
<textarea rows="15" cols="30" name="user"></textarea>
<input type="submit" value="Export to xml">
</form>
When user presses the submit button page redirects to xml.php
and xml.php's contents changes by user input. (POSTing method)
I want to use an iframe tag for xml.php But I don't know how ?
because it redirects to the xml.php how can we iframe result of xml.php in current page ? (showing the result of xml.php in current page)