Titel Bar!

HTML:
<p align="center">
 <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="95%" id="AutoNumber1">
  <tr>
   <td width="100%" height="19" bgcolor="#006699"><p align="center"><font color="#FFFFFF"><b>.::Home::.</b></font></td>
  </tr>
  <tr>
   <td width="100%" height="218" valign="top" align="center"><p><br>
 	Welcome to my Site, I publish here some of my Projects which are Privat or for School, but I think many people ask them self <br>"Why is he doing this?"<br><br>
 	The answer for this question is simple, I want to help people who are not very confident with Computer (Programm)<br>
 	languages.</p></td>
  </tr>
  <tr>
   <td width="100%" height="19" bgcolor="#006699"><p align="right"><font color="#FFFFFF">Written by <b>SkyHawk</b></font></td>
  </tr>
 </table>
 </p>
 <p>&nbsp;</p>

so dies ist die news.php also setze ich einfach am anfang <? $title2 = 'news'; ?>

dies hatt bei mir aber leider nicht funktioniert, weil der Interpreter ja nicht weiß was er tuen soll.
 
Achso wir sind da schon innerhalb des <body> Bereich.
Ok in dem Fall würde zu einer Lösung ähnlich meiner ersten hier geposteten raten, die Variable muss festgelegt werden bevor sie abgerufen wird.
 
Fragen über Fragen :-), ja aber wenn ich jetzt z.B:
PHP:
<? $title2 = 'Links'; ?>
mache dann gibt er mir aber auf jeder Seite inder TitelBar Links aus, das soll er doch nicht, also müsste man da mit
PHP:
<? if ("seite.php")$title2 = 'soundso'; ?>
machen ?
 
Ja, entweder mit einer if-Anweisung oder mit einem Array, denke ich.
Du könntest also den Dateinamen auslesen und dann aus einem Array den dazugehörigen Titel auslesen, ich denke, dass das ein bisschen Code spart.

PHP:
$titel2 = array("links.php" => "Links", "beispiel.php" => "Beispiel");

$datei = '__FILE__';
echo '<title>Beispiel.de - '.$titel2[$datei].'</title>

(Tut mir leid, falls da jetzt noch was falsch ist :( )
 
Warum nicht einfach:

index.php:
PHP:
<?
include("news.php"); //hier deine Seiteninhalts-If-Abfrage
 
$pagename = 'Blaschwall';
?>
<html>
<head>
	<title><? echo $pagename . $title; ?></title>
</head>
<body>
	<? echo $content; ?>
</body>
</html>

news.php:
PHP:
<?
$title = ' - News';
 
$content = '<p align="center">
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="95%" id="AutoNumber1">
<tr>
<td width="100%" height="19" bgcolor="#006699"><p align="center"><font color="#FFFFFF"><b>.::Home::.</b></font></td>
</tr>
<tr>
<td width="100%" height="218" valign="top" align="center"><p><br>
Welcome to my Site, I publish here some of my Projects which are Privat or for School, but I think many people ask them self <br>"Why is he doing this?"<br><br>
The answer for this question is simple, I want to help people who are not very confident with Computer (Programm)<br>
languages.</p></td>
</tr>
<tr>
<td width="100%" height="19" bgcolor="#006699"><p align="right"><font color="#FFFFFF">Written by <b>SkyHawk</b></font></td>
</tr>
</table>
</p>
<p>&nbsp;</p>';
?>
 
Zuletzt bearbeitet:
Zurück