Hello everybody,
anyone can help me with this problem?
instead of just display the child (in array)..echo $Valuechild[$i]."; ";
(see the below code)..I would like to make a link from $Valuechild[$i] to a details of that variable..
<TEXTAREA NAME="comments3" style='width:50%' rows='4'>
<?php
for ($i =0; $i < $ValuenumtableChildren; $i++)
{
//$showsibling = $showsibling.$Valuechild[$i]."; ";
echo $Valuechild[$i]."; ";
?>
<?php
}
?>
</TEXTAREA>
I have done like this..
<a href="viewingdetails.php?name=<?php echo $Valuesibling[$i]."?></a>;
however there is an error on that line.
thank you