Non credo c'entri nulla con il topic
Cmq, nel tuo ciclo, basta che ti fai un link/form con l'id
Codice PHP:<?php while ($row = mysql_fetch_assoc($result)): ?>
...
<a href="edit.php?id=<?php echo $row['id'] ?>">edit</a>
<!-- Oppure con il form -->
<form action="edit.php" method="post">
<input type="hidden" value="<?php echo $row['id'] ?>" name="id" >
<input type="submit" value="Edit">
</form>
<?php endwhile ?>


Rispondi quotando
