Hallo
für sachsenhausen24.de möchte ich einige Seitentitel dynamisch gestallten. Leider habe ich null Ahnung wie das geht.
Bei der Seite handelt es sich um ein fertiges tool.
Hier mal ein Beispiel:
die Seite http://www.sachsenhausen24.de/index....s&objekt_ID=18
sollte den Titel bekommen
Sachsenhausen24.de Empfehlung .. Wir bringen Ihnen Dahme näher! ..
Kann mir jemand erklären wie ich das hinbekomme?
Vielen Dank
für sachsenhausen24.de möchte ich einige Seitentitel dynamisch gestallten. Leider habe ich null Ahnung wie das geht.
Bei der Seite handelt es sich um ein fertiges tool.
Hier mal ein Beispiel:
die Seite http://www.sachsenhausen24.de/index....s&objekt_ID=18
sollte den Titel bekommen
Sachsenhausen24.de Empfehlung .. Wir bringen Ihnen Dahme näher! ..
Kann mir jemand erklären wie ich das hinbekomme?
Vielen Dank
Code:
<title>sachsenhausen24.de Empfehlung </title>
<?php
include("connect.inc.php");
//SQL-Anweiung benötigt eine objekt_ID, die von berichte_list.php übergeben wird.
$objekt_SQL="SELECT * FROM cc_berichte WHERE cc_berichte.objekt_ID=$objekt_ID ";
$objekt_result=mysql_query($objekt_SQL);
$objekt=mysql_fetch_array($objekt_result);
//Kategorien vorbereiten
$kategorie_SQL="SELECT * FROM objektkategorien ORDER BY okat_name";
$kategorie_result=mysql_query($kategorie_SQL);
//<br>-Tags in Zeilenumbrüche konvertieren
//Bilder vorbereiten
if($objekt['objekt_pic_klein']) $img_klein="<img src='berichte/" . $objekt['objekt_pic_klein'] . "' Alt=\"\" align=\"left\" hspace=\"10\" vspace=\"10\"'>";
if($objekt['objekt_pic_gross']) $img_gross="<img src='berichte/" . $objekt['objekt_pic_gross'] . "' Alt=\"\" align=\"right\" hspace=\"10\" vspace=\"10\"'>";
if($objekt['objekt_pic_klein2']) $img_klein2="<img src='berichte/" . $objekt['objekt_pic_klein2'] . "' Alt=\"\" align=\"left\" hspace=\"10\" vspace=\"10\"'>";
if($objekt['objekt_pic_gross2']) $img_gross2="<img src='berichte/" . $objekt['objekt_pic_gross2'] . "' Alt=\"\" align=\"right\" hspace=\"10\" vspace=\"10\"'>";
if($objekt['objekt_pic_klein3']) $img_klein3="<img src='berichte/" . $objekt['objekt_pic_klein3'] . "' Alt=\"\" align=\"left\" hspace=\"10\" vspace=\"10\"'>";
if($objekt['objekt_pic_gross3']) $img_gross3="<img src='berichte/" . $objekt['objekt_pic_gross3'] . "' Alt=\"\" align=\"right\" hspace=\"10\" vspace=\"10\"'>";
?>
<body bgcolor="#FFFFcc" text="#000000" class="stdheaderconfig">
<table width="558" border="0" cellspacing="0" cellpadding="1">
<tr>
<td width="9"> </td>
<td bgcolor="#5471b2" width="37">
<div align="center"><b><span class="newstitel"><font color="#FFFFFF"><font color="#FFFFFF"><img src="g/new-news.gif" alt="neu" width="14" height="8"></font></font></span></b></div>
</td>
<td bgcolor="#5471b2" width="556">
<p> <b>
<?php echo $objekt['objekt_name'] ?>
</b>
</td>
</tr>
</table>
<br>
<table width="556" border="0" cellspacing="0" cellpadding="15" bgcolor="#FFFFcc">
<tr>
<td class="text" valign="top">
<?php
if($objekt['objekt_pic_klein']) {
echo $img_klein;
}
echo $objekt['objekt_beschreibung1'] ?>
</td>
</tr>
<tr>
<td class="text" width="556" valign="top">
<?php
if($objekt['objekt_pic_gross']) {
echo $img_gross;
}
echo $objekt['objekt_beschreibung2'] ?>
</td>
</tr>
<tr>
<td class="text" valign="top">
<?php
if($objekt['objekt_pic_klein2']) {
echo $img_klein2;
}
echo $objekt['objekt_beschreibung3'] ?>
</td>
</tr>
<tr>
<td class="text" width="556" valign="top">
<?php
if($objekt['objekt_pic_gross2']) {
echo $img_gross2;
}
echo $objekt['objekt_beschreibung4'] ?>
</td>
</tr>
<tr>
<td class="text" valign="top">
<?php
if($objekt['objekt_pic_klein3']) {
echo $img_klein3;
}
echo $objekt['objekt_beschreibung5'] ?>
</td>
</tr>
<tr>
<td class="text" width="556" valign="top">
<?php
if($objekt['objekt_pic_gross3']) {
echo $img_gross3;
}
echo $objekt['objekt_beschreibung6'] ?>
</td>
</tr>
</table>
<table width="556">
<tr>
<td>
<div align="left"></div>
<div align="center"><a href="javascript: history.back()">zurück</a></div>
<p align="center"> </p>
</td>
</tr>
<tr>
<td align="center">
<table width="156" border="0" cellpadding="5" style="border:1px dotted #003366">
<tr>
<td>
<div align="center"><a class="q" href="#"onClick="MyWindow=window.open('siteprint.php?site=berichte_details&objekt_ID=<?php echo $objekt_ID ?>','MyWindow','toolbar=no,location=no,directories=no;status=no, menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=700,height=490,left=150,top=100')" ><b>Eintrag-Drucken</b></a>
<a href="#"onClick="MyWindow=window.open('siteprint.php?site=berichte_details&objekt_ID=<?php echo $objekt_ID ?>','MyWindow','toolbar=no,location=no,directories=no;status=no, menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=700,height=490,left=150,top=100')" ><img src="g/print.jpg" border="0" alt="Druckausgabe" width="15" height="14"></a></div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>