Hello dear colleagues from vodahost forum,
I would like to have a dynamic visualization in a combobox created at BV software, for that purpose I am placing on both "Item text" and "Value" fields of the "edit item" box, the following code:
<?php echo $option_one; ?>
<?php echo $option_two; ?>
<?php echo $option_three; ?>
I named the combobox combo_color and at the Tab index placed nothing.
Then I have created in the same webpage an html box that assigns several values to these variables. I used the following code:
<?php
$option_one = 'White';
$option_two = 'Black';
$option_three = 'Red';
?>
I also tried to insert this same code in the "page html" option in several different places, start, between..., inside..., beginning...,etc and none of my trials worked.
Can someone give me some ideas of what am I making wrong ?
Thx,
pipesportugal
I would like to have a dynamic visualization in a combobox created at BV software, for that purpose I am placing on both "Item text" and "Value" fields of the "edit item" box, the following code:
<?php echo $option_one; ?>
<?php echo $option_two; ?>
<?php echo $option_three; ?>
I named the combobox combo_color and at the Tab index placed nothing.
Then I have created in the same webpage an html box that assigns several values to these variables. I used the following code:
<?php
$option_one = 'White';
$option_two = 'Black';
$option_three = 'Red';
?>
I also tried to insert this same code in the "page html" option in several different places, start, between..., inside..., beginning...,etc and none of my trials worked.
Can someone give me some ideas of what am I making wrong ?
Thx,
pipesportugal
Comment