PHP实现网页跳转的3中办法
作者:biezhiyinan 日期:2009-04-07
<?
//PHP自带函数
Header("Location: http://www.feiqiao.net");
//利用meta
echo '<meta http-equiv="refresh" content="0; url=http://www.feiqiao.net">';
//利用Javascript语言
echo "<script language='javascript'>";
echo "location='http://www.feiqiao.net;";
echo "</script>";
?>
评论: 0 | 引用: 0 | 查看次数: -
发表评论
上一篇
下一篇

文章来自:
Tags: