sorry to pester and be a total newbie but:
this is the link that creates all the bugid as links:
<a href=\"view_bug.php\">" . $row['bugid'] . "</a></font></td>
now to get the variable bugid which has been selected I assume I need to use a question mark.
<a href=\"view_bug.php?\">" . $row['bugid'] . "</a></font></td>
now I want the bugid so put in:
<a href=\"view_bug.php?bugid=$_GET['bugid']\">" . $row['bugid'] . "</a></font></td>
But this doesnt return anything in the URL. If this worked I would expect to see something like this in the url view_bug.php?bugid="0000001"
I think the problem is something to do with $row['bugid']...is there anyway I can GET what is stored in this?
This is what I can see
bugids display in browser:
| 1 | ----------------
| 2 | | show bug |
| 3 | --------------> view_bug.php | 2 |
| 4 | -----------------