te dejo un ejemplo básico para que lo analices
saludos
Código PHP:
Ver original<?php
if(isset($_POST['Submit2'])) {
$mensaje = '';
if($_POST['nombre'] == "")
{
$mensaje = "Ingrese su nombre<br />";
}
if($_POST['email'] == "")
{
$mensaje .= "Ingrese su email<br />";
}
if($mensaje !== ''){echo $mensaje;}
}?>
<table width="80%" border="0" align="left" cellpadding="10" cellspacing="0">
<tr>
<td width="655" height="324"><form id="form1" name="form1" method="post" action="">
<p>Nombre y apellido:<br />
<label>
<input name="nombre" type="text" class="form" id="nombre" size="60" value="
<?php if(isset($_POST['nombre'])){echo $_POST['nombre'];}?>" />
</label>
</p>
<p>Correo:<br />
<input name="email" type="text" class="form" id="email" size="60" value="
<?php if(isset($_POST['email'])){echo $_POST['email'];}?>" />
</p>
<p><br />
<br />
<label> <br />
<input type="submit" name="Submit2" value="Enviar" class="form"/>
</label>
</p>
</form>
</td>
</tr>
</table>