I'm able to pass the data ok, but the form fields First and Last are blank in php5. In IE there are not clues the data is being passed. But, in Firefox when either form field is double clicked, a pull down menu appears and one of the menu items has the passed data - other menu items are passed values from prior tests. I can provide the entire form, but I think these are the critical lines. Attached are the form images, one in php4, the other in php5.
<?php
session_start();
$SESSION['sessFirst'];
$SESSION['sessLast'];
$sessFirst = $POST['First'];
$sessLast = $POST['Last'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
..................
<form action=".......................... >
..................
<p>
<input name="First" id="First" type="text" class="req" size="20" tabindex="1" value="<?php echo $sessFirst; ?>"/> <span class="style12"> Last </span>
<input name="Last" id="Last" type="text" class="req" size="20" tabindex="2" value="<?php echo $sessLast; ?>" />
</p>
....................
<body>
</body>
</html>