I don't know if this is enough info but if anyone can tell me why I am getting the following warning and error I would appreciate it.
The conection to the db exists and the file 1-start.php also is there.
Thanks
Warning: main(../Connections/conBSD.php): failed to open stream: No such file or directory in /home/pencils/public_html/interview/1-start.php on line 1
Fatal error: main(): Failed opening required '../Connections/conBSD.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/pencils/public_html/interview/1-start.php on line 1
<?php require_once('../Connections/conBSD.php'); ?>
<?php
mysql_select_db($database_conBSD, $conBSD);
$query_rsQuestions = "SELECT * FROM interview_question ORDER BY title_question ASC";
$rsQuestions = mysql_query($query_rsQuestions, $conBSD) or die(mysql_error());
$row_rsQuestions = mysql_fetch_assoc($rsQuestions);
$totalRows_rsQuestions = mysql_num_rows($rsQuestions);
?>