| Home  | Casa  | Hardware  | Networking  | Programmazione  | Software  | Domanda  | Sistemi  |   
Programmazione  
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Java Programming

  • Programmazione Javascript

  • PHP /MySQL Programmazione

  • Perl Programming

  • Python Programming

  • rubino Programmazione

  • Nozioni di base di Visual Programming
  •  
    Conoscenza Informatica >> Programmazione >> PHP /MySQL Programmazione >> Content
    Come collegare PHP per due database MySQL
    È possibile utilizzare PHP per mantenere un collegamento simultaneo con due database MySQL differenti . Questo è utile quando le informazioni che si desidera accedere è archiviato in server o quando si vuole leggere da un server e scrivere in un secondo server . La funzione PHP " mysql_connect " consente di connettersi a un database MySQL . È possibile avere più connessioni contemporaneamente, a condizione che ciascuno di essi è associato con diversi link di MySQL identificatori. Istruzioni
    1

    Aprire il file sorgente PHP in un editor di testo, ad esempio Blocco note di Windows .
    2

    Conservare l' indirizzo , il nome utente e la password per i due database MySQL in PHP variabili. Ad esempio, " $ myhost1 = " example1.com " ; $ myusername1 = " user1 " ; $ mypassword1 = " password1 " ; $ myhost2 = " example2.com " ; $ myusername2 = " user2 " ; $ mypassword2 = " password2 " ; « .
    3

    Creare una connessione al primo database MySQL utilizzando la" funzione " mysql_connect ( server_address , nome utente, password ) . La funzione " mysql_connect " Restituisce un identificativo di MySQL in caso di successo . Ad esempio, " $ link1 = mysql_connect ( $ myhost1 , $ myusername1 , $ mypassword1 )," - . , Con "$ link1 " essere il link identificatore MySQL per il primo database
    4

    Creare una connessione per il secondo database MySQL con la funzione " mysql_connect ( server_address , username, password) " , ma con un link identificatore MySQL diverso rispetto alla prima connessione. Ad esempio, " $ link2 = mysql_connect ( $ myhost2 , $ myusername2 , $ mypassword2 )," - . , Con "$ link2 " essere il link identificatore MySQL per il secondo database
    5

    Salvare il PHP file.

    Previous :

    next :
      Articoli Correlati
    ·Come svuotare un array in PHP 
    ·Come convertire MyISAM a InnoDB in MySQL 
    ·Espansione Tutorial Menu PHP 
    ·Chi allegati e-mail con PHP 
    ·Come rimuovere la chiave primaria da MySql 
    ·Come costruire un registro automatizzato Bot 
    ·HTML Vs . Redirect PHP 
    ·Come per includere un file PHP a Smarty 
    ·Come spostare caricare file in PHP 
    ·MySQL Amministrazione Tutorials 
      Articoli in evidenza
    ·Come leggere un file in PHP 
    ·Come eseguire IDL in NetBeans 
    ·Come concatenare una stringa con una variabile in javas…
    ·Come manipolare le immagini in Perl 
    ·Visualizzazione di un messaggio in C + + 
    ·Tutorial su Visual Basic XY positivo 
    ·Che cosa sono ' variabili di istanza " in Java 
    ·PHP Pro e contro 
    ·Come costruire un parser in Python 
    ·Come calcolare il tempo in C in Linux 
    Copyright © Conoscenza Informatica http://it.wingwit.com