Hi, I want to make http://mysite.com/id255/
to http://mysite.com/gora-beach-inn/
.
My php looks like:
$result = mysql_query("
SELECT id, header
FROM Article
");
while($data = mysql_fetch_assoc($result)){
mysql_query("
UPDATE Article
SET seo = '".MakeSeo($data['header'])."'
WHERE datum = '".$data['datum']."'
");
}
//Convert: "åäö" to "aao", "space" to "-", "!?" to "nothing", and all to lower case.
function MakeSeo($string)
{
???
}
Please help me with the MakeSoe function.
I use moderewrite, so I just need help to generate the url, so I can save them in my database.