欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

【PHP】下拉列表实现的友情链接

程序员文章站 2022-06-17 16:22:43
...
PHP代码
<?
if ($site != "") :
    header("Location: http://$site");
    exit;
else :
?>
 
<html>
<head>
<title></title>
</head>
<body>
<?
$favsites = array ("www.oschina.net","www.google.com","www.csdn.net","www.php.com");
 
?>
<form action = "index.php" method="post">
<select name="site">
<option value = "">Choose a site:
<?
$x = 0;
 
while ( $x < sizeof ($favsites) ) :
          print "<option value='$favsites[$x]'>$favsites[$x]";
          $x++;
endwhile;
?>
</select>
<input type="submit" value="go!">
</form>
<?
endif;
?>