i'm not sure what you mean... but i try to give you the right code...
$sql = "select * from $sqlTable where id='".$_GET["id"];
$Result = mysql_query($sql);
while ( $row = mysql_fetch_array($Result, MYSQL_ASSOC) )
{
//added a field to your form to pass the ID to the next page, if you have a better idea, then make it so, its just an example, the field is hidden, but some browsers may show it, so it is also readonly
echo "<form action='editband.php' method='post'>
<span id=\"id\" style=\"visibility:hidden;\"> <input type='text' readonly value=". $_GET["id"] ." name='id'> </span><br>
Band Name: <input type='text' name='band_name' value='".$row["band_name"]."'><br>
Genre: <input type'text' name='genre' value='".$row["genre"]."'><br>
Description:<br>
<textarea name='description' rows='60' cols='65' wrap='virtual'>".$row["description"]."</textarea><br>
Official Site: <input type='text' name='official_site' value='".$row["official_site"]."'><br>
Mp3 Link: <input type='text' name='mp3_link' value='".$row["mp3_link"]."'><br>
<input type='submit' name='update' value='Submit'>
</form>";
}
mysql_close();
with this form, you must insert the "UPDATE"-querry on the 'editband.php'...
on this page your UPDATE should look like this
$update="
UPDATE $sqltable
SET band_name = $_POST['band_name'],
genre = $_POST['genre'],
description = $_POST['description'],
official_site = $_POST['official_site'],
mp3_link = $_POST['mp3_link']
WHERE id=$_POST['id']";
this should work fine... have phun :p