Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Whenever I try this,

$conn = mysqli_connect(example.com,user,password,database);

I don't know what I'm doing wrong. My php version is php 5.3.above. Why is this code not working in a live website. Its fine in localhost.

share|improve this question
1  
is mysqli installed/enabled in the php? – Dave Jan 24 at 13:49
Also, try it with the port number. – hjpotter92 Jan 24 at 13:50
Explain not working. Did you test that the $conn was not false? – crush Jan 24 at 13:50
Define "not working". What happens or doesn't happen? – deceze Jan 24 at 13:50
1  
Whilst this does not answer your question, may I advise you to start using PDO or MySQLi. The mysql_* functions are now deprecated, therefore writing applications with them is not a great idea. See here for more info: php.net/manual/en/book.mysqli.php – Ben Carey Jan 24 at 13:51
show 11 more comments

closed as not a real question by deceze, ithcy, cpilko, nickb, Graviton Jan 31 at 3:02

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

define('DB_HOST','example.com');

should be

define('DB_HOST','localhost');

With localhost you are saying that PHP has to connect to the MySQL server that is running on the same server. Unless you are trying to connect to a remove MySQL server, then you'll have to fill in the address of that remote server.

share|improve this answer
I tried that too. – red-cannibal Jan 24 at 23:47
I get this Fatal error: Call to undefined function mysqli_connect() – red-cannibal Jan 24 at 23:47
Are you sure that mysqli is enabled in php? Check if it listed in the phpinfo(); – Tjoene Jan 25 at 9:18
Its solved now. Thank you for your attention – red-cannibal Jan 25 at 11:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.