Hi there,
This is a little hard to explain, but i'll give it a go.
What i need to do is have a <select> dropdown with options, eg.
HTML Code:
<select name="finish">
<option value="" selected="selected">Select a finish</option>
<option value="white">White</option>
<option value="black">Black</option>
</select>
Of which, the selected option is called in as a variable via php and echoed later on in the same page, which dynamically updates when you select a different option.
I thought the code would look something like this
PHP Code:
<?php echo $_GET['finish'];
echo $finish; ?>
But that method won't update dynamically.
Is anyone able to help?