程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 根據來路是否為搜索引擎來決定是否跳出彈窗代碼

根據來路是否為搜索引擎來決定是否跳出彈窗代碼

編輯:關於PHP編程

Code:
 
<?php
$referer = $_SERVER['HTTP_REFERER'];
if(!$referer == ''){
        if(ereg('http',$referer)){
                $referer = @explode('.',$referer);
                if(is_array($referer)){
                        $referer = $referer['1'];
                        if($referer == 'google' OR $referer == 'baidu'){
?>
<script language="javascript">
<!--
window.open ('http://123.xia8.com', 'ad', 'height=600, width=800, top=0,left=0,toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes, location=yes, status=yes')
//寫成一行
-->
</script>
<?php
                        }
                }
        }
}
?>
使用方法:將代碼修改後復制插入到所需要的PHP頁面裡面。
搜索引擎可以自己增加。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved