can anyone help me out here, i do not understand where exactly my error is:
the server has this directory structure
public_html/index.php
Code: Select all
<?php require_once('Connections/dbConnection.php'); ?>Code: Select all
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_dbConnection = "localhost";
$database_dbConnection = "me_emaildb";
$username_dbConnection = "me_emaildb";
$password_dbConnection = "test";
$dbConnection = mysql_pconnect($hostname_dbConnection, $username_dbConnection, $password_dbConnection) or trigger_error(mysql_error(),E_USER_ERROR);
?>Code: Select all
Inavlid path: /domains/mydomain.org/public_html/<, Path's must also begin with a forward slash (/)