Home > Backend Development > PHP Tutorial > 自个儿写了一个跳转函数一直在报错

自个儿写了一个跳转函数一直在报错

WBOY
Release: 2016-06-13 11:49:28
Original
877 people have browsed it

自己写了一个跳转函数一直在报错

<?php<br />/**<br /> * ShowMsg()返回信息定向函数<br /> */<br />function ShowMsg($_info,$_url)<br />	If $_url="" Then <br />		echo "<script type='text/javascript'>alert('$_info');history.back();</script>"<br />	Else <br />		If $_info="" Then <br />			header('Location:'.$_url);<br />		else<br />			echo "<script type='text/javascript'>alert('$_info');location.href='$_url';</script>";<br />		End If<br />	End If<br /><br /><br />?>
Copy after login

------解决方案--------------------
function ShowMsg($_info,$_url){<br />    If ($_url==""  ){<br />        echo "<script type='text/javascript'>alert('$_info');history.back();</script>";<br />    }Else{ <br />        If ($_info=="") <br />            header('Location:'.$_url);<br />        else<br />            echo "<script type='text/javascript'>alert('$_info');location.href='$_url';</script>";<br />        <br />    }<br />}
Copy after login

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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template