I have this form with variables from a database and variable that come from a database and must be mutated.
<html>
<head>
<title>Facility Management personeelsnummer</title>
<link rel="stylesheet" type="text/css" href="../../cmt/sites/web/css/form.css">
<base target="blank">
</head>
<body bgcolor="#FFFFFF">
<?
include("connect.php");
?>
<h3><center>Facility Management personeelsnummer</h3>
<p align="center">Vul het onderstaande formulier in en bevestig de gegevens.</p>
<p align="center">Velden gemarkeerd met * zijn verplichte velden.</p>
<form method="POST" action="mutatiecontrole.php" target = "self">
<TABLE align=center>
<TBODY>
<TR>
<TD vAlign=top align=right>
<P><b>Personeelsnummer: </b></P></TD>
<TD> <?php echo $row["lngPersNr"];?></TD></TR>
<TR>
<TD vAlign=top align=right>
<P><b>Naam: </b></P></TD>
<TD> <?php echo $row["estrName"]; ?></TD></TR>
<TR>
<TD vAlign=top align=right>
<P><b>Voornaam: </b></P></TD>
<TD> <?php echo $row["strNameFore"]; ?></TD></TR>
<TR>
<TD vAlign=top align=right>
<P><b>Voorletters: </b></P></TD>
<TD> <?php echo $row["strNameInit"]; ?></TD></TR>
<TR>
<TD vAlign=top align=right>
<P><b>Titel(s): </b></P></TD>
<TD> <?php echo $row["strTitl"]; ?></TD></TR>
<TR>
<TD vAlign=top align=right>
<P><b>Geslacht: </b></P></TD>
<TD> <?php if ($row["blnMan"]==0) print ("Vrouw"); elseif ($row["blnMan"]==1) print ("Man"); ?></TD></TR>
<TR>
<TD vAlign=top align=right>
<b>Bedrijfsonderdeel / afdeling: </b></TD>
<TD> <?php echo $row["expAbbr"]; ?></TD></TR>
<TR>
<TD vAlign=top align=right>
<P><b>Kamernummer: </b></P></TD>
<TD> <?php echo $row["estrRoom"]; ?></TD></TR>
<TR>
<TD vAlign=top align=right>
<P><b>Toestelnummer: </b></P></TD>
<TD> <?php echo $row["estrTel"]; ?></TD></TR>
<TR>
<TD vAlign=top align=right>
<P><b>Mobielnummer: </b></P></TD>
<TD> <?php echo $row["estrMob"]; ?></TD></TR>
</TBODY></TABLE>
<p><input type="submit" value="OK" name="submit"> <input type="reset" value="Wissen" name="reset"></p>
</form>
</body>
</html>
now i want to parse the php variables to a next script (mutatiecontrole.php) with some mutated variables. (i want to see these mutated variables) and with variables that are not mutated
but i dont want to see these not mutated values on my page ( i want to use the variables in a mail script)
how do i do that