the answer is RC Master 
save every single line of your progress report to a variabe string and send it to the Remote Control Master 
PHP Code:
-- proggy --
name: abc
worked: 245 (mins)
banked: 6 (times)
mined: 170 (ores)
put these into vars
PHP Code:
a, b, c, d :string;
a:= name;
b:= inttostr(worked);
c:= inttostr(banked);
d:= inttostr(mined);
then let them send to the Remote Control Master with a simple
PHP Code:
TypeSend(a);
wait(1000);
TypeSend(b);
wait(1000);
TypeSend(c);
wait(1000);
TypeSend(d);
TypeSend command 
EDIT: you meant something like this right?