The form does use a POST method... I still get the same result... I am truly perplexed because I've tried everything I could think of (even off the wall stuff)...
Here is a larger chunk of the code (the whole form is huge)
<form action="<?php echo $editFormAction; ?>" method="post" name="form1">
<h2>Applicant Data</h2>
<h3>Applying for the position of <?php echo $row_openPos['position_Title']; ?> <input name="applicant_PosApplied" type="hidden" value="<?php echo $row_openPos['position_Title']; ?>" /></h3>
<table class="tblAPPDATA" width="100%" cellpadding="2" cellspacing="2">
<tr>
<td><label>DATA:</label> <input type="password" name="data" value="" size="10">
<?php
$key = "xxxxxx";
$input = $_POST['data'];
$td = mcrypt_module_open('tripledes', '', 'ecb', '');
$iv = "11111111";
mcrypt_generic_init($td, $key, $iv);
$output = mcrypt_generic($td, $input);
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
?>
<input name="ouput_data" type="hidden" value="<?php echo "$output" ?>" />
I really appreciate all the help...
Cheers,
truman