I have a page with a form, and in the middle of the form I placed an iframe with HTML inputs boxes. How can I grab their content using PHP $_POST? I tried to do it as I normally do with forms:
$iframe = $_POST["iframe"];
But it didn't grabbed it.
How can I grab the inputs value from the iframe?