代码之家  ›  专栏  ›  技术社区  ›  user8486381

我将在cpanel中使用phpmyadmin中的什么用户和密码?

  •  0
  • user8486381  · 技术社区  · 7 年前

    这是我第一次上传网站。现在我有一个问题,我的主机是CPANEL。

    我在用密码

    <?php
    date_default_timezone_set("Asia/Manila");
    
    $servername = "localhost";
    $username = "root";
    $password = "";
    $db = "exampledb";
    
    
    // Create connection
    $conn = new mysqli($servername, $username, $password,$db);
    
    // Check connection
    if ($conn->connect_error) {
        die("Connection failed: " . $conn->connect_error);
    } 
    
    ?>
    

    用于我的数据库连接。

    现在我的问题是我应该在servername中输入什么代码?而不是本地主机? 用户名根和密码相同吗?

    2 回复  |  直到 7 年前
        1
  •  1
  •   Renier    7 年前

    在cpanel中的托管站点上,他们通常会给您提供可以使用的服务器名,以及在cpanel上创建db用户所需的密码,这将是您的用户名和密码。

        2
  •  -1
  •   Finwe    7 年前
    // localhost is fine or else you need to keep your server IP.you can find in cpanel.
    $servername = "localhost";
    
    // if you are using database in some other server you should provide IP
    // you need to create a user with required privileges then need to provide username/password 
    // root also fine but better create a user
    $username = "root";
    $password = "";
    
    // Here you need to mention which DB you want use for your application.
    $db = "exampledb";