Jump to content

include_once doing nothing


Janna

Recommended Posts

Hi,

Here is my problem.
I have a file called golobals.php that has the following function in it.
[code]
<php?
//connecting to database
function dbconnect($host, $user, $passwd, $database)
{
$link = mysql_connect($host, $user, $passwd);
  if ( !$link ) die("Couldn't connect to MYSQL: ".mysql_error());
  mysql_select_db($database, $link) or die("Couldn't open database".mysql_error());
  return $link;
}
?>
[/code]

In my script I have the following lines
[code]
<?php
session_start();
include_once("globals.php");
...
$DB = dbconnect($db_hostname, $db_username, $db_password, $db_database);
...
[/code]

The error I get is that the function dbconnect is undefined. I have tried to use require function instead but it gives the same result (no errors about failed require).
Do I have a problem with the path? (I use 1and1 if it matters)

Janna
Link to comment
https://forums.phpfreaks.com/topic/25265-include_once-doing-nothing/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.