"Downloads - Nokia_OVI_Browser_v1_4_ Beta_Build0580_S60v3_S60v5_ English.sis". *beside the favicon.ico*
It's good for SEO, and search engine friendly
.gif)
How to change it, anyone?
$textl = $lng['downloads'];
if isset($_GET['cat'])
{
$cat = intval($_GET['cat']);
$req = mysql_query("SELECT * FROM `download` WHERE `type` = 'cat' AND `id` = '" . $cat . "' LIMIT 1");
$res = mysql_fetch_array($req);
$head_words = $res['text'];
}
elseif isset($_GET['file'])
{
$file = intval($_GET['file']);
$req = mysql_query("SELECT * FROM `download` WHERE `type` = 'file' AND `id` = '" . $file . "' LIMIT 1");
$res = mysql_fetch_array($req);
$head_words = $res['name'];
}
$textl = $head_words;