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

I try to echo my database (hosted on ipage.com) using php and I get this error : Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, cgiadmin@yourhostingaccount.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

What is wrong? $mysqli = new mysqli("site.ipagemysql.com", "user", "pass", "database"); alone, works, so it is not a error in the connection right? or I have to contact the host?

My code

<?php

    $mysqli = new mysqli("site.ipagemysql.com", "user", "pass", "database");

    /* check connection */ 
    if (mysqli_connect_errno()) {
        printf("Connect failed: %s\n", mysqli_connect_error());
        exit();
    }
    printf("Host information: %s\n", $mysqli->host_info);

    $result = mysqli_query($link, "SELECT DATABASE()")) 
    $row = mysqli_fetch_row($result);
    printf("Default database is %s.\n", $row[0]);
    mysqli_free_result($result);
    ?>
share|improve this question

migrated from superuser.com Nov 23 '12 at 17:16

1 Answer

up vote 1 down vote accepted

You have one ) too many on line 12, it's missing a semicolon and you haven't changed the $link variable to correspond with the $mysqli variable on line 3.

$result = mysqli_query($mysqli, "SELECT DATABASE()");

Also, you're mixing object oriented style with procedural style. I'd recommend you to use OO style only. So the code would be:

<?php
    $mysqli = new mysqli("site.ipagemysql.com", "user", "pass", "database");

     /* check connection */ 
    if (mysqli_connect_errno()) {
        printf("Connect failed: %s\n", mysqli_connect_error());
        exit();
    }
    printf("Host information: %s\n", $mysqli->host_info);

    $result = mysqli->query("SELECT DATABASE()")) 
    $row = $result->fetch_row();
    printf("Default database is %s.\n", $row[0]);
    $result->close();
    $mysqli->close();
?>
share|improve this answer
Thank you! Do you think I should have posted this question on codereview or serverfault? or it is good here? – Conrad C Nov 23 '12 at 12:47
You're welcome! I haven't used codereview but I'd say this might belong on StackOverflow, or here since it's not so high-level code. I'd leave it up to the moderators. – onik Nov 23 '12 at 12:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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