Hi and thanks for all the help - however I've still got problems!
At the moment I've tried:
1.
<form name="form1" method="post" action="respag/hotel.php3?Search=1?area" ENCTYPE="x-www-form-urlencoded">
<select name="area" size="1">
<option value="Dublin City Centre">Dublin City Centre </option>
</select>
<input type="submit" name="Submit" value="Submit">
</form>
2.
<form name="form1" method="post" action="respag/hotel.php3?Search=1&area" ENCTYPE="x-www-form-urlencoded">
<select name="area" size="1">
<option value="Dublin City Centre">Dublin City Centre </option>
</select>
<input type="submit" name="Submit" value="Submit">
</form>
- (this is a php3 file)
<form name="form1" method="post" action=
<?php echo "respag/hotel.php3?Search=1&area=$area"?>
ENCTYPE="x-www-form-urlencoded">
<select name="area" size="1">
<option value="Dublin City Centre">Dublin City Centre </option>
</select>
<input type="submit" name="Submit" value="Submit">
</form>
and none of them bring through the value of area when submit is pressed.
What I think is happening is that the form action is taking place before the variable value is collected - does that make sense? - but how do I make it work!
Thanks everyone
Regards
Elizabeth