I am currently using the following code to convert my strings to seo friendly urls:

        function url($url) {
    $url = str_replace(" ", " ", $url);
    $url = str_replace(array("'", "-"), "", $url); 
    $url = mb_convert_case($url, MB_CASE_LOWER, "UTF-8");
    $url = preg_replace("#[^a-zA-Z]+#", "-", $url); 
    $url = preg_replace("#(-){2,}#", "$1", $url); 
    $url = trim($url, "-"); 
        return $url;
} 

When I query my database I match the url against the article titles in my database, my problem is that after performing the seo friendly url function the urls do not match any article titles in my database.

The addition of dashes (not sure about the lowercase) means that they are completely different to the entries in the database.

What is my next step, should I remove the dashes before querying the database, if so how?

Or is it better practice to include the article id in my url somewhere and reference it?

link|improve this question

1  
To load your articles you need to query the DB first. Why not store the ID then and access through ID? Accessing DB using strings is way slower than using numbers, specially if they're PKs. – m0skit0 Nov 7 '11 at 9:43
yep seems like the best way to go. cheers – hairynuggets Nov 7 '11 at 9:55
feedback

1 Answer

up vote 2 down vote accepted

Querying by id seems far faster and simplier to me than reconverting back your titles, using url rerwriting to ignore the title (just for referencement) and call a page with the id as a GET argument. Looking at the current URL let me think that StackOverflow works this way.

Using the current page as an example, i suspect that

http://stackoverflow.com/questions/8034788/php-how-can-i-replace-dashes-with-spaces

is rewritten to something like

http://stackoverflow.com/questions.php?id=8034788

where a simple SQL query gets the content of the article.

link|improve this answer
Great. I will do that, thanks. – hairynuggets Nov 7 '11 at 9:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.