I've got 2 files "done", and "not done".
Not done contains something like
PHP Code:
<table border="1">
<tr>
<td style="font-weight:bold;">Pending Task</td>
<td style="font-weight:bold;">Date Requested</td>
<td style="font-weight:bold;" id="user">Requestor</td>
</tr>
<tr id="0">
<td>test abc</td>
<td>6/16/10 12:43:18 pm</td>
<td class="user">4</td>
</tr>
</table>
That regex pulls out this part
PHP Code:
<tr id="0">
<td>test abc</td>
<td>6/16/10 12:43:18 pm</td>
<td class="user">4</td>
</tr>
and I then rewrite back to the "not done" file something like
PHP Code:
<table border="1">
<tr>
<td style="font-weight:bold;">Pending Task</td>
<td style="font-weight:bold;">Date Requested</td>
<td style="font-weight:bold;" id="user">Requestor</td>
</tr>
</table>
or anything else that isn't done. I then want to send the info I removed from that file to the "done" file. Any ideas? Thanks.
Bookmarks