como poder trabajar un archivo html dentro de php en una misma pagina
<html> <title></title> <head> <meta charset="utf-8"> <style type="text/css"> td{ color:#0080FF; font-family:arial; font-size:15px; } input{ background:#E6E6E6; color:#0080FF; width:100%; } input:hover{ background:#F6E3CE; } button{ background:#81BEF7; border:none; width:80px; height:40px; cursor:pointer; border-radius:0.5em; color:#013ADF; font-family:arial black; } table{ border-radius:0.5em; } </style> </head> <body> <? if(!$_POST) {//validamos nuestro formulario ?> <form action="<? $_POST ?>" method=post> <table border="2" align="center" width="500"> <tr> <td>INGRESE SU NOMBRE</td> <td><input type="text" name="nombre"></input></td> </tr> <tr> <td>INGRESE SU CORREO</td> <td><input type="text" name=...