<?php
while ($row = ibase_fetch_object ($result)) {
echo "<tr><td class='datacellleft'> $row->RELEASE_DATE</td>";
echo "<td class='datacell'><a HREF='edit.php?appid=$appid&appname=$appname&versionnumber=$versionnumber=????</a></td></tr>";
?>
in the above code the HTML link passes the variables $appname and $versionnumber which I have specified previously. I also want to pass the variable $versionnumber.
$versionnumber needs to be the value of the column VERSION_NUMBER within the current row being displayed. can anyone help me with this bit of code? do i have to declare the variable earlier on? i have tried myself but cant get it to work. i have put ???? on the bit im stuck with.
thanks