解析PHP提交後跳轉

來源:互聯網
上載者:User

複製代碼 代碼如下:<?php
//========================== 定義redirect() 開始 =========================//
/**
* 定義redirect()跳轉函數,是用來在使用者操作後,頁面根據要求跳轉到指定頁面
*
* @param unknown_type $ms 是用來調整跳轉所需要的秒數
* @param unknown_type $url 是指定跳轉到的地址
* @param unknown_type $text 是顯示跳轉時候的資訊
*/
function redirect($ms ='', $url='', $text=''){
echo <<<EOT
<meta http-equiv="refresh" content=$ms;URL=$url>
<div align="center">
<table width="600" border="0" cellpadding="1" cellspacing="1" class="tableoutline">
<tr>
   <td colspan="3"><table width="100%" border="0" cellpadding="5" cellspacing="1">
       <tr>
      <td valign="bottom"><div align="center">頁面操作提示</div></td>
      </tr>
       <tr>
      <td><div align="center">$text</div></td>
      </tr>
       <tr>
      <td><div align="center"><a href="$url" mce_href="$url">本頁面在 $ms 秒後自動跳轉,如果您的瀏覽器沒有跳轉,點此連結返回。</a></div>
   </td>
      </tr>
   </table></td>
</tr>
   </table>
   </div>
EOT;
}
//========================== 定義redirect() 結束 =========================//
?>

使用的時候是:
redirect('2','adduser.php','增加使用者已經成功!稍後返回!');
其中 2 表示秒數,adduser.php 是所跳轉的頁面, "增加使用者已經成功!稍後返回!" 是跳轉等待的時候所顯示的資訊!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.