duanjian5059 2016-06-02 08:48
浏览 109
已采纳

Xampp - 在浏览器中无法读取PHP,MySQLi - 与PEAR的致命错误

I don't know what exactly happens because I have a page ready to handle-up a login system but it's only programmed in html and css yet. Why?

Because when I try to program something in php like this to start making the login system works;

Document called Connections

<?php
$con = mysqli_connect("localhost", "root", "84df86a16c3bf8fb94dd3824b9144604", "thunderorbit");
?>

My register document with all the html

<?php
require '/ThunderOrbit/Loginscreen/Connections.php';
?>

all the html (I won't paste it or it will ocupy the whole page xD but it works before I write nothing in PHP or using mySQLi with PHP)

The error log;

Warning: require(/ThunderOrbit/Loginscreen/Connections.php): failed to open stream: No such file or directory in C:\xampp\htdocs\ThunderOrbit\Loginscreen\Loginscreen-Index.php on line 4

Fatal error: require(): Failed opening required '/ThunderOrbit/Loginscreen/Connections.php' (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\ThunderOrbit\Loginscreen\Loginscreen-Index.php on line 4

Attention to (include_path='C:\xampp\php\PEAR') please I don't understand what to do, help!!

  • 写回答

4条回答 默认 最新

  • duannao3819 2016-06-02 15:54
    关注

    Yeah!

    I was so stupid. The solution was here:

    Change

    <?php
    
    require '/ThunderOrbit/Loginscreen/Loginscreen-Connections/Loginscreen-Connections.php';
    
    ?>
    

    To

    <?php
    
    require '/Loginscreen-Connections/Loginscreen-Connections.php';
    
    ?>
    

    Because php isn't the same as html or css, talking of links. I got the solution thinking by five minutes and I started to laugh xD. Thank you guys!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部