我想知道你是怎么用的? (问号)在你的网站上,根据网址中的变量做不同的事情。 喜欢: http://example.com/php/learn/kinder.php?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>
它仍然无法正确重定向
答案 0 :(得分:0)
在kinder.php地方:
$level = $_REQUEST['level'];
echo $level;
阅读有关POST和GET请求的信息。 http://www.tizag.com/phpT/postget.php
或者您的意思是如何将变量放在URL中?
要么
<meta http-equiv="refresh" content="1; url=http://teachertechtutor.com/php/learn/kinder.php?level=<?php echo $level;?>>
或
echo "<meta http-equiv="refresh" content="1; url=http://teachertechtutor.com/php/learn/kinder.php?level=".$level;
编辑/更新
您是否尝试获取变量并根据它来切换页面内容?
你可以这样做吗?
<?php
//you could load header here
//include 'header.php';
/*
*Load content based on $_get parameter
*/
// Get the $variable from the url after the level=
$page = (isset($_GET['level'])) ? $_GET['level'] : 'index';
//Check to see if the file exist
if (!file_exists($page . '.php'))
{
//echo "File does not exist" . $page;
}
switch ($page)
{
case 'test':
include('test.php');
break;
case 'test2':
include('test2.php');
break;
case 'test3':
include('test3.php');
break;
//Defualt start page
default:
include('index.php');
}
// You could load footer here
//include 'footer.php';
?>