meshi Posted July 17, 2008 Share Posted July 17, 2008 hello all, I need your help please, I don't know PHP well but I need to connect my oracle db throw php, I found this code: <html> <body> <?php $host="localhost:3306"; $uname="hr"; $pass="hr"; $connection= mysql_connect ($host, $uname, $pass); if (! $connection) { die ("A connection to the Server could not be established!"); } else { echo "User root logged into to MySQL server ",$host," successfully."; } ?> </body> </html> and I am trying to connect the hr tables that I have without any success, I am getting this error message: Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'hr'@'localhost' (using password: YES) in c:\wamp\www\1.php on line 9 A connection to the Server could not be established! I will be gladfull for any help... thanks a lot, Dan Quote Link to comment https://forums.phpfreaks.com/topic/115193-problem-to-connect-oracle-db-with-php/ Share on other sites More sharing options...
meshi Posted July 17, 2008 Author Share Posted July 17, 2008 an addition, I am trying to connect oracle that is on my computer, and I am using WAMP5 as a server to the PHP thanks Quote Link to comment https://forums.phpfreaks.com/topic/115193-problem-to-connect-oracle-db-with-php/#findComment-592308 Share on other sites More sharing options...
corbin Posted July 18, 2008 Share Posted July 18, 2008 http://us.php.net/oracle Quote Link to comment https://forums.phpfreaks.com/topic/115193-problem-to-connect-oracle-db-with-php/#findComment-593120 Share on other sites More sharing options...
meshi Posted August 17, 2008 Author Share Posted August 17, 2008 thanks, I think this link might help other peoples.. http://www.oracle.com/technology/pub/notes/technote_php_instant.html Quote Link to comment https://forums.phpfreaks.com/topic/115193-problem-to-connect-oracle-db-with-php/#findComment-618654 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.