Ahoj,
spravil som si script, aby som mal na kazdu kategoriu vo freeglobes iny odkaz. Je to taketo nieco.
Kód:
<?php
$category1='<a href="http://ludske-charaktery.ym.sk/">Ľudské charaktery</a>';
$category2='';
$category3='';
$category4='';
$category5='';
$category6='';
$category7='';
$category8='';
$category9='';
$category10='';
$category11='';
$category12='';
$category13='';
$category14='';
$category15='';
$category16='';
$category17='';
$category18='';
$category19='';
$category20='';
$category21='';
$category22='';
$category23='';
$category24='';
$theurl = $_SERVER['REQUEST_URI'];
if (strpos($theurl, "auto-moto-c-12")) echo $category1;
if (strpos($theurl, "cestovn-c-14")) echo $category2;
if (strpos($theurl, "elektro-c-17")) echo $category3;
if (strpos($theurl, "finance-c-20")) echo $category4;
if (strpos($theurl, "po-tae-internet-c-1")) echo $category5;
if (strpos($theurl, "reality-c-28")) echo $category6;
if (strpos($theurl, "sport-c-22")) echo $category7;
if (strpos($theurl, "zbava-c-32")) echo $category8;
if (strpos($theurl, "bazary-c-124")) echo $category9;
if (strpos($theurl, "dm-zahrada-c-16")) echo $category10;
if (strpos($theurl, "erotika-c-18")) echo $category11;
if (strpos($theurl, "fitness-c-21")) echo $category12;
if (strpos($theurl, "prce-c-26")) echo $category13;
if (strpos($theurl, "koly-c-30")) echo $category14;
if (strpos($theurl, "stavebnictv-c-29")) echo $category15;
if (strpos($theurl, "zdrav-c-33")) echo $category16;
if (strpos($theurl, "bl-zbo--c-13")) echo $category17;
if (strpos($theurl, "e-shopy-c-9")) echo $category18;
if (strpos($theurl, "film-c-19")) echo $category19;
if (strpos($theurl, "kultura-c-23")) echo $category20;
if (strpos($theurl, "pjovny-c-27")) echo $category21;
if (strpos($theurl, "sluby-c-15")) echo $category22;
if (strpos($theurl, "ubytovn-c-31")) echo $category23;
if (strpos($theurl, "zpravodajstv-c-34")) echo $category24;
?>
Takze by mi malo echovat inu premennu podla kategorie. Avsak vo freeglobes su templaty len html. Takze to neincludnem cez php script. Tak som potom pozrel ako to robia, maju to sparovane cez index.php. kde to paruju nejako takto:
Kód:
case 'links':
$template = 'links.html';
$include = 'links.php';
break;
Lenze tam zase len nacita premenne a vypise ich podla links.html. Ako to spojazdnit, mate niekto katalog pripadne riesenie?