我有一个页面,用户可以在其中输入他正在销售的产品并被重定向到该页面。我知道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.
}
}