我想知道你是怎么用的?(问号)在您的网站中使其根据 url 中的变量执行不同的操作。like: http://example.com/php/learn/kinder.php?level= $level 就像那个叫什么,你怎么用它?我假设使用 switch 语句这是我目前的代码:
<php
$con=mysqli_connect("host","username","pass","db");
//Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$level = mysqli_query($con,"SELECT gradek FROM profiles");
?>
<html>
<head>
<title> Redirecting </title>
<meta http-equiv="refresh" content="1; url=http://teachertechtutor.com/php/learn/kinder.php?level=$level>
</head>
<body>
</body>
</html>
然后我会有一个开关......我知道这毫无意义。我只是想知道以供将来参考。
所以我的问题是:如何在 html 中使用 php 变量进行重定向 如何使用?更改代码。
我使用了 bolli 的代码,这就是网页中显示的内容:
`<meta http-equiv="refresh" content="1; url=http://teachertechtutor.com/php/learn/kinder.php?level2=> </head> <body> </body> </html>
它仍然无法正确重定向