|
#include "web_api.h"
Action()
{
long file;
char * time;
char * total;
char * member;
/*。。。。*/
web_reg_save_param("p_time",
"LB=现在时间是",
"RB=</td>",
LAST);
web_reg_save_param("p_total",
"LB= <span class=\"bold\">",
"RB=</span> 条记录",
LAST);
web_reg_save_param("p_memeber",
"LB=条记录 - <span class=\"bold\">",
"RB=</span> 成员信息",
LAST);
/*。。。*/
file=fopen("E:\\tongji.txt","at+");
time=lr_eval_string("{p_time}\t\t");
total=lr_eval_string("{p_total}\t\t");
member=lr_eval_string("{p_memeber}\t\t");
fputs(time,file);
fputs(total,file);
fputs(member,file);
return 0;
} |
|