| 12345678910111213141516171819202122232425262728293031323334 |
- <?
- include("../config/conn.php");
- include("../config/function.php");
- $getstr=$_GET[str];
- $m=returnsx("m");
- switch($m){
- case 1: $nurl=weburl."task/view".returnsx("i").".html";$nstr="您好,您的投标信息已经发送,耐心等待雇主选标";break;
- case 2: $nurl=weburl."task/view".returnsx("i").".html";$nstr="您好,你已接单成功,完成任务后,请一定及时提交验收";break;
- }
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="x-ua-compatible" content="ie=7" />
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <meta http-equiv="refresh" content="10;url=<?=$nurl?>">
- <title>操作提示 - <?=webname?></title>
- <? include("../tem/cssjs.html");?>
- </head>
- <body>
- <? include("../tem/top.html");?>
- <? include("../tem/top1.html");?>
- <div class="yjcode">
- <div class="succap">提示</div>
- <div class="sucmain">
- <strong><?=$nstr?></strong><br>
- <a href="<?=$nurl?>">5秒后系统会自动跳转,也可点击此处直接跳转</a>
- </div>
- </div>
- <? include("../tem/bottom.html");?>
- </body>
- </html>
|