der unten aufgeführte code liegt in einer .inc datei. nun möchte ich in dieser datei in der mittleren tabelle ein php script aufrufen. meine frage WIE GEHT DAS? mit include habe ich es probiert geht nicht oder ich mache was falsch. bitte kann mir jemand helfen. bin noch ein newbie auf dem gebiet............................
<?
################### Head und linke Navigation #######################
$template1 = GetTemp("oben");
$template1 = str_replace("{TITEL}","top 10 filme mit bewertung", $template1);
echo $template1;
########################################################################## ?>
<!-- ################## Inhalt der mittleren Tabelle ###################### --->
<p><table border="1" bordercolor="#333366" cellpadding="0" cellspacing="0">
<tr>
<td ><img src=""></td>
<td><?php include("jepoll.inc"); ?> </td>
</table>
<!-- ########################################################################## --->
<?PHP ################# rechte Navigation und Footer ###############
$template2 = GetTemp("unten");
echo $template2;
##########################################################################
?>
<?
################### Head und linke Navigation #######################
$template1 = GetTemp("oben");
$template1 = str_replace("{TITEL}","top 10 filme mit bewertung", $template1);
echo $template1;
########################################################################## ?>
<!-- ################## Inhalt der mittleren Tabelle ###################### --->
<p><table border="1" bordercolor="#333366" cellpadding="0" cellspacing="0">
<tr>
<td ><img src=""></td>
<td><?php include("jepoll.inc"); ?> </td>
</table>
<!-- ########################################################################## --->
<?PHP ################# rechte Navigation und Footer ###############
$template2 = GetTemp("unten");
echo $template2;
##########################################################################
?>
Kommentar