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

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 11:49:28989browse

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

<?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 />?>

------解决方案--------------------
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 />}

Statement:
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