I think I did exactly what you said and it's still not
working :S
This is the table from artistsmaster.php, it has an edit
hyperlink that links to the edit page.
[code]
<table border="1" align="center">
<tr>
<td>ARTISTID</td>
<td>FIRSTNAME</td>
<td>LASTNAME</td>
<td> </td>
</tr>
<?php do { ?>
<tr>
<td><a href="artistdetail.php?recordID=<?php
echo $row_rsArtist['ARTISTID']; ?>"><?php echo
$row_rsArtist['ARTISTID']; ?> </a></td>
<td><?php echo $row_rsArtist['FIRSTNAME'];
?> </td>
<td><?php echo $row_rsArtist['LASTNAME'];
?> </td>
<td><a href="editartist.php?artistid=<?php echo
$row_rsArtist['ARTISTID']; ?>">Edit</a></td>
</tr>
<?php } while ($row_rsArtist =
mysql_fetch_assoc($rsArtist)); ?>
</table>
[/code]
And this is a screenshot of editartist.php just to show you
that I have done everything correctly.
http://www.imagebase.ws/images/b9lybqg4nllxc23uxag9.gif