<td height="100%" colspan="2" valign="top"><?php include "G\index.php"; ?> </td>
Bonjour, je viens vous demandé de l'aide afin d'inclure PhpWebGallery dans une autre page PHP
je n'arrive pas à le faire avec une simple fonction include
-----------------------------------------------------------------------
sur wamp5 mon serveur local j'ai le message suivant :
Warning: main(\G\index.php) [function.main]: failed to open stream: No such file or directory in c:\wamp\www\newsite\galerie.php on line 15
Warning: main() [function.include]: Failed opening '\G\index.php' for inclusion (include_path='.;C:\php5\pear') in c:\wamp\www\newsite\galerie.php on line 15
-----------------------------------------------------------------------
et mon code est le suivant dans la page qui doit inclure PhpWebGallery
<html>
<head>
<title>index</title>
<meta http-equiv="Content-Type" content="text/html;">
</head>
<body bgcolor="#ffffff">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td colspan="2" valign="top">
<?php include "header.php";?>
</td>
</tr>
<tr>
<td height="100%" colspan="2" valign="top"><?php include "\G\index.php"; ?> </td>
</tr>
</table>
</body>
</html>