I see in your code, the repeat is above your <? php do {?>
You need to move that.... to below <? php do {?>
Also you need to move your:
<?php } while ($row_rswhateverrecordset= mysql_fetch_assoc($rswhateverrecordset)); ?>
Also, make sure your submit button doesn't have any extra values added to it.
It should be just the name of the buttom.
DA has been adding code to the submit button....when the wizard runs...when it wraps the whole table...
That is the reason for repositioning the code. !
Here is a working example of where the code should be located....
I found it applys to all multiple, insert, update delete.
<?php do { ?>
<?php
// RepeatSelectionCounter_1 Begin Loop
$RepeatSelectionCounter_1_IterationsRemaining = $RepeatSelectionCounter_1_Iterations;
while($RepeatSelectionCounter_1_IterationsRemaining--){
if($RepeatSelectionCounterBasedLooping_1 || $row_rsmessages){
?>
<tr>
<td colspan="2"><div align="center"><?php echo $row_rsmessages['fromUserName']; ?></div>
</td>
<td><div align="center"><a href="message.php?messageID=<?php echo $row_rsmessages['messageID']; ?>"><?php echo $row_rsmessages['subject']; ?></a></div></td>
<td><div align="center">
<input type="hidden" name="WADA_RepeatID_messageID_<?php echo $RepeatSelectionCounter_1; ?>" id="WADA_RepeatID_messageID_<?php echo $RepeatSelectionCounter_1; ?>" value="<?php echo $row_rsmessages["messageID"]; ?>" />
<input type="checkbox" name="checkboxDelMess_<?php echo $RepeatSelectionCounter_1; ?>" id="checkboxDelMess_<?php echo $RepeatSelectionCounter_1; ?>" value='<?php echo $row_rsmessages["messageID"]; ?>'/>
</div></td>
</tr>
<?php
} // RepeatSelectionCounter_1 Begin Alternate Content
else{
?>
<td width="18%">No Messages</td>
<?php } // RepeatSelectionCounter_1 End Alternate Content
if(!$RepeatSelectionCounterBasedLooping_1 && $RepeatSelectionCounter_1_IterationsRemaining != 0){
if(!$row_rsmessages && $RepeatSelectionCounter_1_Iterations == -1){$RepeatSelectionCounter_1_IterationsRemaining = 0;}
$row_rsmessages = mysql_fetch_assoc($rsmessages);
}
$RepeatSelectionCounter_1++;
} // RepeatSelectionCounter_1 End Loop
?>
<?php } while ($row_rsmessages = mysql_fetch_assoc($rsmessages)); ?>
<tr>
<td colspan="3"> </td>
<td><div align="center">
<input type="submit" name="DelMessBtn" id="DelMessBtn" value="Delete" />
</div></td>
</tr>
</table>
</form>