Eccomi di nuovo ho un problema con dei file inclusi.
Ho una cartella principale (gruppo), all'interno di questa cartella ho altre due cartelle (images ed inclusioni) + un file index.php.
All'interno della cartella inclusioni ho un file testa.php.
All'interno della cartella images ho un file f.jpeg.
Il file testa.php contiene al suo interno la jpeg:
testa.php
type="text/css">
<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000">
<table width="447" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="446" rowspan="3" valign="top">[img]../images/f.jpg[/img]
</td>
<td width="1" height="94"></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td height="119"></td>
</tr>
</table>
il file testa.php e' incluso dentro il file index.php
index.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<body bgcolor="#E2E2E2" leftmargin="5" topmargin="5" marginwidth="5" marginheight="5">
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0" class="style" bgcolor="#F7F7F7">
<tr>
<td width="100%" height="30" valign="top"><? include("inclusioni/nome_testata.php"); ?>
</td>
</tr>
<tr>
<td height="109" valign="top"></td>
</tr>
<tr>
<td height="35" valign="top"></td>
</tr>
</table>
</body>
</html>
Il file viene incluso pero' non visualizzo la jpeg.
Come posso risolvere.
Grazie.