I get this error, when i run my code on a linux box, i have just moved over from a windows box and this works on it,i guess its because of the include directory, but how do i write it so that it works in linux?
The Error
This is a test webpage.
Warning: Division by zero in /www/htdocs/www.beaumont-travel.com/index.php on line 8
Warning: Failed opening 'inc' for inclusion (include_path='.:/usr/local/lib/php') in /www/htdocs/www.beaumont-travel.com/index.php on line 8
Fatal error: Call to undefined function: db_connect() in /www/htdocs/www.beaumont-travel.com/index.php on line 10
The Code
<html>
<head>
<title>Test Page</title>
</head>
<body>
This is a test webpage.
<?php
include (functions/db_functions.inc);
db_connect ("localhost", "tony", "tony");
?>
</body>
</html>