still not working: multiple delete
Another issue is, that after several tries and removals of the repeat region, they are still there:
<?php
// RepeatSelectionCounter_1 Initialization
$RepeatSelectionCounter_1 = 0;
$RepeatSelectionCounterBasedLooping_1 = false;
$RepeatSelectionCounter_1_Iterations = "-1";
?><?php
// RepeatSelectionCounter_2 Initialization
$RepeatSelectionCounter_2 = 0;
$RepeatSelectionCounterBasedLooping_2 = false;
$RepeatSelectionCounter_2_Iterations = "-1";
?>
<?php
// RepeatSelectionCounter_3 Initialization
$RepeatSelectionCounter_3 = 0;
$RepeatSelectionCounterBasedLooping_3 = false;
$RepeatSelectionCounter_3_Iterations = "-1";
?>
Then, after I did what is described here:
<?php
// RepeatSelectionCounter_3 Begin Loop
$RepeatSelectionCounter_3_IterationsRemaining = $RepeatSelectionCounter_3_Iterations;
while($RepeatSelectionCounter_3_IterationsRemaining--){
if($RepeatSelectionCounterBasedLooping_3 || $row_rsShownewKat){
?>
<tr>
<td><input type="hidden" name="WADA_RepeatID_categories_id_<?php echo $RepeatSelectionCounter_3; ?>" id="WADA_RepeatID_categories_id_<?php echo $RepeatSelectionCounter_3; ?>" value="<?php echo $row_rsShownewKat["categories_id"]; ?>" />
<input name="edit_sorter_<?php echo $RepeatSelectionCounter_3; ?>" type="text" value="<?php echo $row_rsShownewKat['sort']; ?>" size="8" maxlength="5"></td>
<td><input type="text" name="edit_subkat_<?php echo $RepeatSelectionCounter_3; ?>" id="edit_subkat_<?php echo $RepeatSelectionCounter_3; ?>" value="<?php echo $row_rsShownewKat['header']; ?>"></td>
<td align="center"><input name="clicktodelete_<?php echo $RepeatSelectionCounter_3; ?>" type="checkbox" id="clicktodelete_<?php echo $RepeatSelectionCounter_3; ?>" value='<?php echo $row_rsShownewKat["categories_id"]; ?>'></td>
</tr>
<?php
} // RepeatSelectionCounter_3 Begin Alternate Content
else{
?>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<?php } // RepeatSelectionCounter_3 End Alternate Content
if(!$RepeatSelectionCounterBasedLooping_3 && $RepeatSelectionCounter_3_IterationsRemaining != 0){
if(!$row_rsShownewKat && $RepeatSelectionCounter_3_Iterations == -1){$RepeatSelectionCounter_3_IterationsRemaining = 0;}
$row_rsShownewKat = mysql_fetch_assoc($rsShownewKat);
}
$RepeatSelectionCounter_3++;
} // RepeatSelectionCounter_3 End Loop
?>
it still won't work.
Any idea what else could cause this?


