Help with multiple arguments
Posted: Sun Nov 10, 2002 5:18 am
i made a dynamic form which creates a table on runtime, and in front of every record shows a checkbox.
following is code:
the problem with this is that, when i select multiple checkboxes, it still sends only a single value.
Can someone please help me with this
following is code:
Code: Select all
while($xyz=mysql_fetch_array($sql_select))
{
$cat_id=$xyzї"cat_id"];
$cat_name=$xyzї"cat_name"];
$cat_desc=$xyzї"cat_desc"];
print("<tr>");
print("<td><input type=checkbox name=c1 value=$cat_id></td>");
print("<td>$cat_id</td>");
print("<td>$cat_name</td>");
print("<td>$cat_desc</td>");
print("</tr>");
}Can someone please help me with this