Ja bych potřeboval, udělal jsem testovací stránku do které se za pomocí php vkládá text, ale zároveň bych potřeboval poradit jak měnit i title.
soubor: index.php
Kód: Vybrat vše
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">       
  <head>         
    <!--  ščřžýŠČŘŽÝ -->             
    <meta name="generator" content="PSPad editor, www.pspad.com" />            
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />         
                       
    <title>
    </title>              
  </head>       
  <body>             
                       
        <div id="menu">                                           
          <a href="index.php">stranka1</a>                               
          <a href="index.php?stranka=stranka2">stranka2</a>                     
                            
        </div>             
            
        <div id="obsah">       
<?php
$stranka = $_GET["stranka"];
if ($stranka == "stranka2") {include "stranka2.inc";}
else {include "index.inc";}
          ?>  
</div>            
  </body>
</html>soubor: index.inc
Kód: Vybrat vše
<?php echo ("blablalalalalala");
?>


