Visualizzazione dei risultati da 1 a 6 su 6

Discussione: Database Test

  1. #1

    Database Test

    Ragazzi Ho installato da poco Easy php ma per installare un forum devo come faccio a sapere

    <?

    $mysqlhost = "";

    $mysqluser = "";

    $mysqlpassword = "";

    $mysqldb = "";

    ?>

    del database TEST che già esiste in easyphp

  2. #2
    Utente bannato
    Registrato dal
    Apr 2004
    Messaggi
    1,392

    Re: Database Test

    Originariamente inviato da alnuvola
    Ragazzi Ho installato da poco Easy php ma per installare un forum devo come faccio a sapere

    <?

    $mysqlhost = "";

    $mysqluser = "";

    $mysqlpassword = "";

    $mysqldb = "";

    ?>

    del database TEST che già esiste in easyphp
    La prossima volta scrivi un pò meglio (e studiati la grammatica)...
    se intendi poter visualizzare il db test lo puoi fare:
    Codice PHP:
    mysql_connect('localhost''user''pass'); //da settare
    mysql_select_db('test');
    $st=mysql_query("SHOW TABLES");
    while (
    $row=mysql_fetch_array($st))
    echo 
    $row[0] . "
    \n"


  3. #3
    come faccio a visualizzare quello che hai scritto

  4. #4
    ora non mi fa neanche entrare in php admin
    dice accesso all'utente non consentito
    come faccio a configurare queste cose

    Ragazzi un pò di pazienza ma non sono pratico

  5. #5
    <?
    // Hostname or IP of your MySQL-Server
    $mysqlhost = "";
    // Username and Password to Login to your Database
    $mysqluser = "";
    $mysqlpassword = "";
    // Name of your Database
    $mysqldb = "";
    // Number of this Board
    $n = "1";
    // Email Address of the Administrator
    $adminmail = "";
    ?>


    Praticamente Vorrei sapere come configurare questo file Config.php
    e poi successivamente far partire in locale install.php

  6. #6
    Utente bannato
    Registrato dal
    Apr 2004
    Messaggi
    1,392
    Codice PHP:
    <?
    $mysqlhost 
    "localhost";
    // Username e Password che servono per accedere a mysql
    $mysqluser "";
    $mysqlpassword "";
    // nome del database da utilizzare
    $mysqldb "";
    // Numero delle tabelle
    $n "1";
    // email dell'amministratore
    $adminmail "";
    ?>

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.