Smiffy,
I don't understand your question!
Here is a look at the script and where the <input type> is;
///////////////////////////////////////////////////////////////////////
default:
print("<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\" align=\"center\" width=\"75%\"><tr>");
print("<form action = \"$PHP_SELF\" method=\"post\">");
print("<td align=\"center\" colspan=\"4\">");
print("<input type=\"submit\" name=\"MessageType\" value=\"Modifier\"> ");
print("<input type=\"submit\" name=\"MessageType\" value=\"Ajouter\"> ");
print("<input type=\"submit\" name=\"MessageType\" value=\"Effacer\"> ");
print("</td></tr>");
$count = 1;
$colsprinted = 0;
$totalcols = 3;
$totalitems = 0;
$query = "select * from membres order by nom";
$mysql_result = mysql_query($query, $mysql_link);
while($row = mysql_fetch_row($mysql_result))
{
if($colsprinted == $totalcols)
{
print("</tr><tr>");
$colsprinted = 0;
}
printf("<td align=\"top\" valign=\"top\" style=\"border-bottom: solid 1 #000000\"><input type=\"checkbox\" name=\"checkbox$count\" value=\"%s\" unchecked><b>%s, %s</b><br><b>Adr.:</b> %s<br><b>Tel.:</b> %s<br><b>Fréq.:</b> %s<br><b>Email:</b> %s</td>", $row[0], $row[2], $row[1], $row[3], $row[4], $row[5], $row[6]);
$count++;
$colsprinted++;
$totalitems++;
}
printf("<input type=\"hidden\" name=\"totalitems\" value=\"%s\">", $totalitems);
print("</td></tr>");
print("</form>");
print("</table>");
break;
////////////////////////////////////////////////////////////////////////