JayC
Always Learning
In my page-client.tpl file:
require_once 'findretros_config.php';
require_once 'findretros.php';
$FindRetros = new FindRetros();
if($FindRetros->hasClientVoted()) {
echo 'You have voted!';
}else{
// echo 'You have yet to vote!';
$FindRetros->redirectClientToVote();
}
When I save it and reload client it says:
Warning: require_once(findretros_config.php): failed to open stream: No such file or directory in C:\xampp\htdocs\includes\tpl\page-client.tpl on line 5
Fatal error: require_once(): Failed opening required 'findretros_config.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\includes\tpl\page-client.tpl on line 5
Also I have the files there lol..
require_once 'findretros_config.php';
require_once 'findretros.php';
$FindRetros = new FindRetros();
if($FindRetros->hasClientVoted()) {
echo 'You have voted!';
}else{
// echo 'You have yet to vote!';
$FindRetros->redirectClientToVote();
}
When I save it and reload client it says:
Warning: require_once(findretros_config.php): failed to open stream: No such file or directory in C:\xampp\htdocs\includes\tpl\page-client.tpl on line 5
Fatal error: require_once(): Failed opening required 'findretros_config.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\includes\tpl\page-client.tpl on line 5
Also I have the files there lol..