no, that is not what he wants.
Instead of linking directly to order.php from the fudge.html page, do something like this: <a href="order.php?x=fudge">ORDER</a>
Do the same link for the other pages as well.
<a href="order.php?x=brittle">ORDER</a>
<a href="order.php?x=cake">ORDER</a>
Then on the order.php page where it has the product drop down list change it to this:
<?
$product = $_GET['x'];
?>
<select name="select">
<option>-- Select one --</option>
<option value="Fudge" <?if ($product == 'fudge') { echo"selected"; } else { echo""; }?>>Fudge</option>
<option value="Brittle" <?if ($product == 'brittle') { echo"selected"; } else { echo""; }?>>Brittle</option>
<option value="Cake" <?if ($product == 'cake') { echo"selected"; } else { echo""; }?>>Cake</option>
</select>
If this is confusing let me know,