使用slug提交PHP表单

时间:2013-10-25 16:25:38

标签: php forms .htaccess mod-rewrite get

我的形式很简单:

<form action="/" method="get"> 

<select name="category">
<option value="social">social</option> 
<option value="tech">tech</option> 
</select>

</form>

如果我选择tech并提交此类表单,我会在网址中附加/?category=tech。是否有可能获得提交的SEO slug。例如:/tech

2 个答案:

答案 0 :(得分:2)

您可能需要在表单的onsubmit部分使用一些javascript。

http://jsfiddle.net/qwa54/

答案 1 :(得分:0)

U可以绑定以下链接。 嗨,您将通过重定向链接来尝试.htaccess http://www.generateit.net/mod-rewrite/

基于slug函数,我们可以创建友好的URL。

<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
       <label>Enter the Text :</label><input type="text" name="name"><br>
    <select name="category">
    <option value="social">social</option> 
    <option value="tech">tech</option> 
    </select><br>
       <input type="submit" name="submit" value="Submit Form"><br>
    </form>

<?php

function seo_friendly_url($string){
    $string = str_replace(array('[\', \']'), '', $string);
    $string = preg_replace('/\[.*\]/U', '', $string);
    $string = preg_replace('/&(amp;)?#?[a-z0-9]+;/i', '-', $string);
    $string = htmlentities($string, ENT_COMPAT, 'utf-8');
    $string = preg_replace('/&([a-z])(acute|uml|circ|grave|ring|cedil|slash|tilde|caron|lig|quot|rsquo);/i', '\\1', $string );
    $string = preg_replace(array('/[^a-z0-9]/i', '/[-]+/') , '-', $string);
    return strtolower(trim($string, '-'));
}
?>
<?php
if(isset($_POST['submit'])) 
{ 
     $name = $_POST['name'];
     $category = $_POST['category'];
    echo "<b>input value : </b>".$name;echo "<br>";
    $seofriendname = seo_friendly_url($name);
    echo "<b>SEO Function value</b> </br>".$seofriendname;
}
?>