In my script I print out table of users and behind of them are buttons which
are pointing to the current field, all script working and listing me all users
and buttons but I can't get button value.
button value is in the address bar like: http://192.168.0.98/gl/delete_user.php?19=Delete
How can I get this 19 into my script ??
maybe I have use <a href ....> ?? but how ??
echo "<form >";
print "<table BORDER=1>";
echo "<td><h3> Nr.</h3> </td><td><h3> Nimi</h3> </td> <td><h3>Amet</h3> </td> <td><h3>Elukoht</h3> </td><td><h3>Isikukood </h3></td><td><h3>Staatus </h3></td>";
//tabeli ridade kokku lugemine
while ($r = mysql_fetch_array($all_users))
{ $i++;
$Ide = $r["id"];
$Name = $r["nimi"];
echo "<tr>";
echo "<td>$i</td><td>$Name</td><td><input type=\"submit\" name=\"$Ide\" size=\"20\" value=\"Delete\"></td>";
echo "</tr>";
}
echo "</table></form>";
thanx...