tenemos index
Código PHP:
<html>
<head>
<title>index</title>
</head>
<body>
<form action="ejecutar" method="post">
Nombre <input name="nom" type="text" /><br>
clave <input name="clave" type="password" /><br>
<input name="enviar" type="submit" value="entrar" /><br>
</form>
<div id="mostrar"> <?
echo "bienbenido";
echo "Nombre es:".$_POST['nom']."";
?>
</div>
</body>
</html>