I have this code that includes the following:
<?php
session_start();
require_once "lib/conexao.php";
require_once "lib/functions.utilities.php";
require_once "lib/class.User.php";
$usr = new User(conectar());
timeValidation();
?>
But now, I need to do a part of the client and I need to stay putting ../
?
<?php
session_start();
require_once "../lib/conexao.php";
require_once "../lib/functions.utilities.php";
require_once "../lib/class.User.php";
$usr = new User(conectar());
timeValidation();
?>
Would you like me to tell him to look directly at the include without putting ../
?