io presuppongo che il campo id si chiami "idson" (poi cambialo ovviamente)
nota che ho cambiato mysql_fetch_row con mysql_fetch_assocCodice PHP:<table>
<?
$id2 = "1";
$strSql = "SELECT * FROM sondaggio";
$result = mysql_query($strSql);
while($ris = mysql_fetch_assoc($result)){
echo "<tr>\n";
echo "<td><a href=\"all.php?action=modify&id=" . $ris["idson"] ."&stato=\">Mod</a></td>\n
<td><a href=\"all.php?action=delete&id=" . $ris["idson"] . "&stato=\">Canc</a></td>";
echo "\n</tr>\n";
}//end while
?>
</table>

Rispondi quotando