0

我有一个页面,用户可以在其中输入他正在销售的产品并被重定向到该页面。我知道mysql LIKE '%%' function,但我没有使用数据库。如果大小写匹配,我只想重定向到该页面。这怎么可能?无论是javascript还是php?

例如:如果用户输入“laptop”,那么他/她将被重定向到laptop.php(我有页面)。我怎样才能做到这一点?

表格结构:

 <form class="sellcont" action="" method="post">
     <input type="text" name="selling" >
<input type="submit" name="submit" value="Next" class="myButton">
 </form>


 <?php if(isset($_POST['submit'])){
 $sell = $_POST['selling'];
 if(!empty($_POST['selling'])){

//This is where I am lost. 

}


 }
4

3 回答 3

2

评论后

您使用 phpheader重定向并检查输入 ($_POST['sales'])in_array是否是一个好的输入。

$goodinput = array("laptop", "pc", "mac", "cellphone");

if(!empty($_POST['selling'])){

    if (in_array($_POST['selling'],$goodinput)){ //checks if user input is a  good input

       header('Location: http://www.yoururl.com/'.$_POST['selling'].'php');
       exit();

    } else {

       header('Location: http://www.yoururl.com/wedonthavethatpage.php');
       exit();

    }
}

建议:

  • 而不是创建单个页面,例如:laptop.php您将类似的值存储在数据库中并创建动态页面。
于 2013-09-02T06:06:13.610 回答
1

PHP 代码应该是这样的:

<?php if(isset($_POST['submit'])){
 $sell = $_POST['selling'];
 if(!empty($_POST['selling'])){
     header('location: ./'.$_POST['selling'].'.php');   
 }
 else {
     header('location: ./index.php');  //index.php is PHP files on which user enter selling item
  }  
}
?>
于 2013-09-02T06:08:53.523 回答
1

您也可以在此答案中使用代码:

如何通过 PHP 检查 URL 是否存在?

查看用户输入的内容是否可用。如果是,请进行重定向,如果不是,请将其发送到备用页面。

例如

if(!empty($_POST['selling'])){
    $file = 'http://www.yourdomain.com/'.$_POST['selling'].'.php';
    $file_headers = @get_headers($file);
    if($file_headers[0] == 'HTTP/1.1 404 Not Found') {
        $exists = false;
    }
    else {
        $exists = true;
    }

    if ($exists) {
        header(sprintf('Location: %s', $file);
    }
    else {
        header('Location: http://www.yourdomain.com/other_page.php');
    }
    exit();
}
于 2013-09-02T06:35:07.917 回答