• User Attivo

    Errore include

    Salve ragazzi mi aiutate a risolvere questo problemino?
    Ho provato tantissime combinazioni ma non sono riuscito a risolvere questo problema dell'include.
    Uso EasyPHP vi posto la parte di codice che c'interessa...

    [PHP]<html>
    <head>
    <link rel="stylesheet" type="text/css" href="css/stile.css" />
    <title>Nome SITO</title>
    </head>
    <body>
    <div id="container">
    <div id="header"><?php include("../header.php"); ?></div>
    <div id="info"><?php include("../info.php"); ?></div>
    <div id="nav"><?php include("../nav.php"); ?></div>
    <div id="content">
    <?php
    include("../connect/connectdb.php");
    include("../function/check.php");
    include("../get/getusers.php");
    ControllaSessione($_SESSION['myid']);

                        echo "<center><h2>Crea la tua STAR del BASKET</h2>";
                        echo "<form name=NewPG action=/game/pg/savepg.php method=post>";
                        echo "<b>Nome PG:</b> ";
                        echo "<input name=\"name_pg\" type=\"text\" size=\"25\" maxlenght=\"25\" /><br><br>";
                        echo "<b>Nazionalità:</b> ";
                        echo "<select name=nation_pg><option value=Italia selected=selected>Italia</option>";
                        echo "<option value=USA>USA</option>";
                        echo "<option value=Cina>Cina</option>";
                        echo "<option value=Canada>Canada</option>";
                        echo "<option value=Francia>Francia</option>";
                        echo "<option value=Lituania>Lituania</option></select><br><br>";
                        echo "<b>Altezza: </b>";
                        echo "<input name=height_pg type=text size=5 maxlenght=10 /><br><br>";
                        echo "<b>Peso: </b>";
                        echo "<input name=weight_pg type=text size=5 maxlenght=10 /><br><br>";
                        echo "<b>Inoltre la tua star avrà:<br>";
                        echo "Tecnica: 1 | Precisione: 1 | Agilità: 1 | Forza: 1 | Resistenza: 1</b><br><br>";
                        echo "<input type=\"submit\" value=\"Conferma la tua STAR\"></center></form>";
                    ?>
        </div>
        <div id="footer"><?php include("footer.php"); ?></div>
    </div>
    

    </body>
    </html>[/PHP]

    mi da questo errore per ogni include...
    Warning: include(../header.php) [function.include]: failed to open stream: No such file or directory in C:\Program Files (x86)\EasyPHP-5.3.9\www\game\pg\newpg.php on line 8

    Warning: include() [function.include]: Failed opening '../header.php' for inclusion (include_path='.;C:\php\pear') in C:\Program Files (x86)\EasyPHP-5.3.9\www\game\pg\newpg.php on line 8

    Ho provato a risolverlo in tanti modi, ma non ci sono riuscito...cosa mi consigliate?


  • User Attivo

    Ciao Eduadie.
    So che è un domanda idiota, ma sei sicuro che la pagina header.php esista, vero?


  • User Attivo

    Ho risolto!
    Grazie comunque 😉