Error in Localhost

前端 未结 1 377
夕颜
夕颜 2021-01-29 11:50

I have code in index.php





        
相关标签:
1条回答
  • 2021-01-29 12:36

    I am guessing you have not created a Virtual Host for this project, so the $_SERVER["DOCUMENT_ROOT"] will be pointing at C:\xampp\htdocs\ and not C:\xampp\htdocs\Myshop

    To avoid this you can use the following which says require from the inc folder below where I am currently running this code from whereever that may be

    <?php 
        $title ="League of Draven"
        require_once './inc/head.php';
        require_once './inc/menu.php';
        require_once './inc/footer.php';
    
    0 讨论(0)
提交回复
热议问题