Home > php教程 > php手册 > body text

PHP快速生成各种信息提示框的方法,php生成信息

WBOY
Release: 2016-06-13 08:46:35
Original
950 people have browsed it

PHP快速生成各种信息提示框的方法,php生成信息

本文实例讲述了PHP快速生成各种信息提示框的方法。分享给大家供大家参考,具体如下:

function ShowMsg($msg, $gourl, $onlymsg = 0, $limittime = 0) //系统提示信息
{
/*
*$msg 信息提示的内容
*$gourl 需要跳转的网址
*$onlymsg 1 表示不自动跳转 0表示自动跳转
*$limittime 跳转的时间
*/
  global $dsql, $cfg_ver_lang;
  if (eregi ( "^gb", $cfg_ver_lang ))
    $cfg_ver_lang = 'utf-8';
  $htmlhead = "\r\n\r\n系统提示\r\n\r\n";
  $htmlhead .= "\r\n\r\n\r\n
\r\n\r\n
\r\n\r\n\r\n"; if ($limittime == 0) $litime = 5000; else $litime = $limittime; if ($gourl == "-1") { if ($limittime == 0) $litime = 5000; $gourl = "javascript:history.go(-1);"; } if ($gourl == "" || $onlymsg == 1) { $msg = ""; } else { $func = " var pgo=0; function JumpUrl(){ if(pgo==0){ location='$gourl'; pgo=1; } }\r\n"; $rmsg = $func; $rmsg .= "document.write(\"
系统提示信息:
\");\r\n"; $rmsg .= "document.write(\"


\");\r\n"; $rmsg .= "document.write(\"" . str_replace ( "\"", "“", $msg ) . "\");\r\n"; $rmsg .= "document.write(\""; if ($onlymsg == 0) { if ($gourl != "javascript:;" && $gourl != "") { $rmsg .= "

如果你的浏览器没反应,请点击这里..."; } $rmsg .= "

\");\r\n"; if ($gourl != "javascript:;" && $gourl != "") { $rmsg .= "setTimeout('JumpUrl()',$litime);"; } } else { $rmsg .= "

\");\r\n"; } $msg = $htmlhead . $rmsg . $htmlfoot; } if (isset ( $dsql ) && is_object ( $dsql )) @$dsql->Close (); echo $msg; }
Copy after login

更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP基本语法入门教程》、《php常用函数与技巧总结》及《php面向对象程序设计入门教程》

希望本文所述对大家PHP程序设计有所帮助。

您可能感兴趣的文章:

  • PHP 实现类似js中alert() 提示框
  • PHP弹出提示框并跳转到新页面即重定向到新页面
  • 用PHP实现弹出消息提示框的两种方法
  • php+ajax做仿百度搜索下拉自动提示框(有实例)
  • php简单提示框alert封装函数
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!