[PHP & MySQL] Erneutes Problem- include ()

Startpost-Retter
hallo,

irgendwie stehe ich gerade wieder auf dem Schlauch. Warum includet der mir das nicht?

php:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
if($eintragen==true) { 
         echo "<table border="0" width="100%" height="100%">
    <tr>
        <td colspan="2" height="49">
        <p align="center"><font face="Verdana" size="5">Moderationspanel zum 
        Hufeisen</font></td>
    </tr>
    <tr>
        <td width="18%" valign="top">
        <font face="Verdana" style="font-size8pt"> include('modmenue.htm') </font></td>
        <td width="81%" valign="top">
        &nbsp;<p align="center"><font face="Verdana" style="font-size8pt">Die 
        Erstellung des Verkaufspferdes war erfolgreich!</font></td>
    </tr>
</table>"; 
      } else { 
         echo "Fehler!"; 
               }
Maina
Was sagt er denn? Und dein anderer Code, wo es reinsoll, wäre auch praktisch x)
VRH Pferde
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
 
if($eintragen==true) { 
         echo "<table border="0" width="100%" height="100%">
    <tr>
        <td colspan="2" height="49">
        <p align="center"><font face="Verdana" size="5">Moderationspanel zum 
        Hufeisen</font></td>
    </tr>
    <tr>
        <td width="18%" valign="top">
        <font face="Verdana" style="font-size: 8pt"> ";
include('modmenue.htm') ;
echo "</font></td>
        <td width="81%" valign="top">
        &nbsp;<p align="center"><font face="Verdana" style="font-size: 8pt">Die 
        Erstellung des Verkaufspferdes war erfolgreich!</font></td>
    </tr>
</table>"; 
      } else { 
         echo "Fehler!"; 
               }