po testach i małych przeróbkach działa sposób @siemakuba
ALE
nie działa jeżeli wszystko wrzucam przez index.php.
Czyli jeżeli napisze to tak:
start.php
<LINK rel="stylesheet" href="tlo.css" type="text/css">
<?php
$page = 'strona1';
?>
<?php
echo '<a href="start.php" class="'.($page == 'strona1' ?
'current' : 'normal').'">start<br></a>';[php
] echo '<a href="strona2.php" class="'.($page == 'strona2' ?
'current' : 'normal').'">Link 2<br></a>'; echo '<a href="kontakt.php" class="'.($page == 'strona3' ?
'current' : 'normal').'">Link 3<br> </a>'; ?>
START
strona2.php
<LINK rel="stylesheet" href="tlo.css" type="text/css">
<?php
$page = 'strona2';
?>
<?php
echo '<a href="start.php" class="'.($page == 'strona1' ?
'current' : 'normal').'">start<br></a>'; echo '<a href="strona2.php" class="'.($page == 'strona2' ?
'current' : 'normal').'">Link 2<br></a>'; echo '<a href="kontakt.php" class="'.($page == 'strona3' ?
'current' : 'normal').'">Link 3<br> </a>'; ?>
STRONA2
kontakt.php
<LINK rel="stylesheet" href="tlo.css" type="text/css">
<?php
$page = 'strona3';
?>
<?php
echo '<a href="start.php" class="'.($page == 'strona1' ?
'current' : 'normal').'">start<br></a>'; echo '<a href="strona2.php" class="'.($page == 'strona2' ?
'current' : 'normal').'">Link 2<br></a>'; echo '<a href="kontakt.php" class="'.($page == 'strona3' ?
'current' : 'normal').'">Link 3<br> </a>'; ?>
KONTAKT
tlo.css
BODY { background-color:#000000; font-size:10; color:#CCCCCC; font-family:Arial, Helvetica, sans-serif}
A{color: ffffff; text-decoration:inherit; text-decoration: none; font-size:12; font-family:Arial, Helvetica, sans-serif}
A:hover{color: #ffffff; font-size:12; text-decoration:underline; font-family:Arial, Helvetica, sans-serif}
table { background-color:#000000; font-size:13; color:#CCCCCC; font-family:Arial, Helvetica, sans-serif}
A.current {
text-decoration:underline;
}
TO DZIAŁA!!!
ale nie o to chodzi

nie poto robie tą stronke w php aby każdą osobno pisać
Ja bym chciał ayby działało to tak:
tlo.css
BODY { background-color:#000000; font-size:10; color:#CCCCCC; font-family:Arial, Helvetica, sans-serif}
A{color: ffffff; text-decoration:inherit; text-decoration: none; font-size:12; font-family:Arial, Helvetica, sans-serif}
A:hover{color: #ffffff; font-size:12; text-decoration:underline; font-family:Arial, Helvetica, sans-serif}
table { background-color:#000000; font-size:13; color:#CCCCCC; font-family:Arial, Helvetica, sans-serif}
A.current {
text-decoration:underline;
}
menu.php
<?php
echo '<a href="index.php?srodek=start.php" class="'.($page == 'strona1' ?
'current' : 'normal').'">start<br></a>'; echo '<a href="index.php?srodek=strona2.php" class="'.($page == 'strona2' ?
'current' : 'normal').'">Link 2<br></a>'; echo '<a href="index.php?srodek=kontakt.php" class="'.($page == 'strona3' ?
'current' : 'normal').'">Link 3<br> </a>'; ?>
start.php
<?php
$page = 'strona1';
?>
START
kontakt.php
<?php
$page = 'strona3';
?>
KONTAKT
strona2.php
<?php
$page = 'strona2';
?>
STRONA2
A WSZYSTKO IDZIE PRZEZ INDEX.php
index.php
<LINK rel="stylesheet" href="tlo.css" type="text/css">
<?php
include ('menu.php')
?><br />
<br />
<?php
if (isset($_GET['srodek'])) {
$srodek=$_GET['srodek'];
include("./$srodek");
}
else
{
include('./start.php');
}
?>
A w ten sposób nie działa

Myśl @siemakuba jest dobra ale teraz pomóżcie w przerobieniu to aby działoło to przez includy w index.php