okay I have a form like so
form name="report" action="confirm.php" method="post">
Logon:<input type="text" name="logon" class="indent" /><br /><br />Unit:<input type="text name="unit" class="indent" /><br /><br />
location:<input type="text" name="location" class="indent" /><br /><br />Problem:<textarea name="problem" style="position:
absolute; left: 160px;" rows="10" cols="40"></textarea><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
resolution:<input type="text" name="resolution" class="indent" /><br /><br />Email Address:<input type="text" name="email" class="indent" /><br /><br />
<input type="Submit" name="submit" value="Enter" class="indent" /><input type="reset" value="reset" class="indent1" /><br /><br /><br /></form>
now I need these variable sto be passed on to confirm.php which just echos what they have written and asks for confirmation... this is no problem but there is one that will not echo my code is
<?php error_reporting(E_ALL^E_NOTCE);
echo $_POST['logon'];
echo $_POST['unit'];
echo $_POST['location'];
echo $_POST['problem'];
?>
This is as far as i have gotten because for some reason unit will no show in this page
any ideas<input type="text" name="unit" class="indent" />silly me miss a double quote
thanks joshheh, no problem.
form name="report" action="confirm.php" method="post">
Logon:<input type="text" name="logon" class="indent" /><br /><br />Unit:<input type="text name="unit" class="indent" /><br /><br />
location:<input type="text" name="location" class="indent" /><br /><br />Problem:<textarea name="problem" style="position:
absolute; left: 160px;" rows="10" cols="40"></textarea><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
resolution:<input type="text" name="resolution" class="indent" /><br /><br />Email Address:<input type="text" name="email" class="indent" /><br /><br />
<input type="Submit" name="submit" value="Enter" class="indent" /><input type="reset" value="reset" class="indent1" /><br /><br /><br /></form>
now I need these variable sto be passed on to confirm.php which just echos what they have written and asks for confirmation... this is no problem but there is one that will not echo my code is
<?php error_reporting(E_ALL^E_NOTCE);
echo $_POST['logon'];
echo $_POST['unit'];
echo $_POST['location'];
echo $_POST['problem'];
?>
This is as far as i have gotten because for some reason unit will no show in this page
any ideas<input type="text" name="unit" class="indent" />silly me miss a double quote
thanks joshheh, no problem.