'Xampp - can't read PHP, MySQLi at the browser - Fatal error with 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!!
Solution 1:[1]
Maybe PHP Windows and Linux compatibility path, change \ to PATH_SEPARATOR or DIRECTORY_SEPARATOR constants.
Reference about PATH_SEPARATOR
Solution 2:[2]
Make sure PHP has access to that file.
Solution 3:[3]
If the file you are requiring is in the same directory just name the file.
require('Connections.php');
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Community |
| Solution 2 | serv92 |
| Solution 3 | serv92 |
