我需要在我的网站上创建一个用户输入代码的表单,并根据该代码将其重定向到另一个页面。通过数据库完成它会更安全,但我不介意逻辑是否在表单本身处理。
所以,这是我的意思的一个例子:
输入代码:(方便此处)
表单搜索潜在答案列表(s5d11,wy4sd,lk123等),如果找到匹配项,则会重定向到每个代码的特定页面,否则会显示输入的代码错误的错误消息。
答案 0 :(得分:3)
这是一个包含两个文件的示例,一个html和一个php文件。 html页面将输入的内容提交到php页面,该页面根据输入将浏览器重定向到URL。
HTML,index.html:
<form action="redirect.php" method="get">
<input name="mytext" />
<input type="submit" />
</form>
PHP,redirect.php:
<?
switch($_GET['mytext'])
{
case 's5d11':
header('Location: http://somepage.com/');
break;
case 'qy4sd':
header('Location: http://someotherpage.com/');
break;
default:
print "<p>Wrong code. Try again</p>";
include('index.html');
break;
}
?>
答案 1 :(得分:0)
试试这个。我只是鞭打了这个。您有一个代码和一个重定向到每个代码的路径。您当然需要应用自己的卫生设施和任何其他标准。我把它们全部大写......
<?php
$_POST['CODE'] = 'CODE'; // Simulate post data...
$array_of_codes = array('CODE' => 'pathtoredirect');
$get_code = addslashes(strtoupper($_POST['CODE']));
if(array_key_exists($get_code, $array_of_codes))
{
header("Location:".$array_of_codes[$get_code]."");
}else
{
echo "Error: Code not in array.";
}
?>