I have got 2 html files:
File1.html contains a form to submit to a PHP file:
<form action="handle_form.php" method="get">
</form>
File2.html contains some input tags:
<input name="fullname" />
<input name="email" />
...
How can i load file2.html to file1.html to submit input value from file2.html to handle_form using PHP.Thank a lot!
you need to use PHP, so your first file will be named file1.php and will contain:
PHP files can contains only html tags and no PHP scripts, so feel free to use them.