Hello people, here is my another problem
At the beginning of the script I have some values assigned to some variables and the script works perfectly.
Code:
$host='localhost';
$username='username';
$password='password';
$db_name='dbname';
$tbl_name="table";
so I created new file with the name
incl.php which contains only this part of my script and in the main file I worte require ("incl.php");
and now I get the following error:
$host='localhost'; $username='username'; $password='password'; $db_name='dbname'; $tbl_name="table";
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC'@'localhost' (using password: NO) in
C:\Program Files\VertrigoServ\www\icsp2\process.php on line
6
cannot connect to database
