Welcome Guest, Not a member yet? Register   Sign In
A Database Error
#4

Here is a small script to test the database connection:

PHP Code:
<?php

// Test MySQLi Connection:
// Fill in connection information.

$dbhost 'localhost';
$dbuser 'root';
$dbpass 'password';
$dbname 'database_name';

$db_conn mysqli_connect($dbhost$dbuser$dbpass$dbname);

// Evaluate the connection
if (mysqli_connect_errno())
{
 
   echo mysqli_connect_error();
 
   exit();
}
else
{
 
   echo "Successful database connection.";

What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
A Database Error - by adamrifau - 04-25-2016, 12:20 AM
RE: A Database Error - by casa - 04-25-2016, 03:32 AM
RE: A Database Error - by adamrifau - 04-26-2016, 12:22 AM
RE: A Database Error - by InsiteFX - 04-27-2016, 04:32 AM
RE: A Database Error - by adamrifau - 05-01-2016, 10:40 PM



Theme © iAndrew 2016 - Forum software by © MyBB