is this what did you mean?
PHP Code:
<select size="2">
<?php
for ($i =0; $i < $ValuenumtableChildren; $i++)
{
foreach(getRelatedKeywords($Valuechild[$i].) as $Keyword){
echo "<option>{$Keyword}</option>";
}
?>
<?php
}
?>
</select>
I tried this as well
PHP Code:
<textarea name="comments3" style='width:50%' rows='4'>
<?php
for ($i =0; $i < $ValuenumtableChildren; $i++)
{
foreach(getRelatedKeywords($Valuechild[$i].) as $Keyword){
echo "<option>{$Keyword}</option>";
}
?>
<?php
}
?>
</textarea>
both do not work.
really need your help.
the ($Valuechild[$i].) are displayed correctly..just to make a link form it.
thanks
Bookmarks