Thanks for your comment. I tried that and I get the page returnded back without any errors but it doesn't look like any of the variables are passed through the post. I did a
<?php
$field1= $POST['field1'];
$field2 = $POST['field2'];
echo $field1;
echo $field2;
?>
at the top just to check and see if it was passed and nothing was displayed. I send the form like this
<form method="POST" action="<?php echo $_SERVER['PHP_SELF']?>" name="name">
with the select options set as
<select name="field" onChange="return jump(this);" size="1">
Also I do a master if(submit) in the main part of the code
if (isset($_POST['submit'])) {
setup link to DB then narrow down by field name
if (isset($_POST['field1'])) {
After it reads the data will it pickup the autosent select as came from form 'submit'?
Thanks for any help
James