Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>form + email</title>
<script type="text/javascript">
</script>
</head>
<body>
<form method="post" action="emailerprocess.php">
<label for="Name" id="Name">Name:</label>
<input type="text" name="Name" /><br />
<label for="Email" id="Email">Email Address:</label>
<input type="text" name="Email" /><br />
<label for="company" id="Company">Company:</label>
<input type="text" name="Company" /><br />
<label for="Phone" id="Phone">Phone:</label>
<input type="text" name="Phone"><br />
<hr width="300px" align="left">
<label for="TN" id="TN">Transactions:</label>
<input type="text" name="TN"><br />
<label for="CR" id="CR">Commision rate:</label>
<input type="text" name="CR"><br />
<input value="Submit" type="submit">
</form>
</body>
</html>now ive got tn and cr being used in a formula in my php emailer page, but on this page that i showed code for, i need to have tn*cr*6 and have it show up on this same page. i cant figure out how tho




