I am retrieving records for Customer ID as follows and displaying them
as table rows with a checkbox for multiple deletion.
Part of a </FORM>
*************** *************** *************** *************** ****
$recordset=Arra y();
$c=0;
while (ora_fetch_into ($cursor,$recor dset,ORA_FETCHI NTO_NULLS|
ORA_FETCHINTO_A SSOC))
{
echo "<TR>".
"<TD><INPUT TYPE=Checkbox name=No[ ] Value=".$c."></TD>".
"<TD>".$records et["CUSTID"]."</TD>".
"<TD>".$records et["TITLE"]."</TD>".
"</TR>";
$c=$c+1;
}
*************** *************** *************** *************** *****
I am quite confused what should be my query string in the submit file.
I want to delete matching Customer IDs in the table from the checked
records. Please suggest how I can frame the query. I am currently able
to delete just one record.
-CD
as table rows with a checkbox for multiple deletion.
Part of a </FORM>
*************** *************** *************** *************** ****
$recordset=Arra y();
$c=0;
while (ora_fetch_into ($cursor,$recor dset,ORA_FETCHI NTO_NULLS|
ORA_FETCHINTO_A SSOC))
{
echo "<TR>".
"<TD><INPUT TYPE=Checkbox name=No[ ] Value=".$c."></TD>".
"<TD>".$records et["CUSTID"]."</TD>".
"<TD>".$records et["TITLE"]."</TD>".
"</TR>";
$c=$c+1;
}
*************** *************** *************** *************** *****
I am quite confused what should be my query string in the submit file.
I want to delete matching Customer IDs in the table from the checked
records. Please suggest how I can frame the query. I am currently able
to delete just one record.
-CD
Comment