<table>
<?php foreach($data as $key=>$value):?>
<tr id="id_<?php echo $value['id']; ?>">
<td><a href="#" rel="edit_order" id="<?php echo $value['id']; ?>" ><?php echo $value['var1']; ?></a></td>
<td><?php echo $value['var2']; ?></td>
<td><?php echo $value['var3']; ?></td>
</tr>
<?php endforeach; ?>
</table>
$('a[rel=edit_order]').live("click", function(){
var id=$(this).attr('id');
var order_status = $("tr[id='id_"+id+"']").find("td[class=order_status]").text();
var order_comment = $("tr[id='id_"+id+"']").find("td[class=order_comment]").text();
order_modal.find("input[name=edit_id_order]").val(id);
order_modal.find("input[name=order_status]").val(order_status);
order_modal.find("textarea[name=order_comment]").val(order_comment);
});