Hallo,
ich baue meine Webseiten immer so auf, dass ich die Links erstelle
Index.php?cont=News
Index.php?cont=Kino
Index.php?cont=Kneipe
Index.php?cont=Forum
ist das so die gängige Praxis oder geht das auch einfacher / besser / google freundlicher?
LG Homwer
ich baue meine Webseiten immer so auf, dass ich die Links erstelle
Index.php?cont=News
Index.php?cont=Kino
Index.php?cont=Kneipe
Index.php?cont=Forum
PHP:
switch ($_GET['cont'])
{
case News: include "news.php"; break;
case Kino: include "kino.php"; break;
default: include "news";
}
ist das so die gängige Praxis oder geht das auch einfacher / besser / google freundlicher?
LG Homwer