Skip to content

Instantly share code, notes, and snippets.

@apphp
Created June 4, 2017 18:57
Show Gist options
  • Save apphp/26702c965860255f5c35dac39e62d964 to your computer and use it in GitHub Desktop.
Save apphp/26702c965860255f5c35dac39e62d964 to your computer and use it in GitHub Desktop.
Post Data to iFrame with HTML Only
// source: www.apphp.com/index.php?snippet=html-post-data-into-iframe
<form action="iframe.php" target="my_iframe" method="post">
<label for="text">Name:</label>
<input type="text" name="full_name">
<label for="text">Email:</label>
<input type="text" name="email">
<input type="submit" value="post">
</form>
<iframe name="my_iframe" src="iframe.php"></iframe>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment