Karl Evans
Apr 12th 2007, 4:37 pm
Evening,
I'm having some difficulty at the moment with a bit of javascript, I'm by no means an expert, but I'm having a go.
Right, I'm pulling some information from a database using PHP, I'm storing this in a javascript array. So it's a little like this:
var comments = new array();
Then the PHP puts the information in the array like so.
comments['1'] = "Comments Here";
comments['2'] = "Comments Here Also";
Now what I require is a function that will change the data when the corresponding option is selected in the dropdown list.
<select name="comments">
<option value="1">Change To comments['1']</option>
<option value="2">Change To comments['2']</option>
</select>
Whatever is selected needs to be displayed underneath the dropdown list.
Could anybody put me in the right direction please?
If somebody can write the function that works, I will chuck them a few quid/dollars via PayPal.
Thanks,
Karl
I'm having some difficulty at the moment with a bit of javascript, I'm by no means an expert, but I'm having a go.
Right, I'm pulling some information from a database using PHP, I'm storing this in a javascript array. So it's a little like this:
var comments = new array();
Then the PHP puts the information in the array like so.
comments['1'] = "Comments Here";
comments['2'] = "Comments Here Also";
Now what I require is a function that will change the data when the corresponding option is selected in the dropdown list.
<select name="comments">
<option value="1">Change To comments['1']</option>
<option value="2">Change To comments['2']</option>
</select>
Whatever is selected needs to be displayed underneath the dropdown list.
Could anybody put me in the right direction please?
If somebody can write the function that works, I will chuck them a few quid/dollars via PayPal.
Thanks,
Karl