Aprire il file PHP in un editor di testo come Blocco note di Windows .
2
Connettersi al server in cui si trova il database che si desidera popolare . Con un database MySQL questo è fatto aggiungendo il seguente codice nel corpo del file PHP : ?
$ my_connect = mysql_connect ( " localhost " , "username " , " password ") ; if ( $ my_connect ) { die ( ' Errore durante la connessione al database : ' . mysql_error (); ! ) } sostituire " localhost" , "username" e "password" con il log -in informazioni per il database . 3 Selezionare il nome del database che si desidera popolare . Con MySQL questo è fatto aggiungendo il codice : mysql_select_db ( " name_of_db " , $ my_connect ) ; popolare il database con informazioni inviando ripetutamente query SQL "insert" per il database . Con MySQL questo è fatto aggiungendo il codice : mysql_query ( " INSERT INTO my_table (nome , età ) VALUES ( 'Bob' , '21 ' )"); mysql_query ( "INSERT INTO my_table (nome , età ) VALUES ( 'Kim ' , '42 ' ) ") ; mysql_query ( " INSERT INTO my_table (nome , età ) VALUES ( ' Jessica ' , '33' ) " ) ; chiudere la connessione al database quando hai finito di usarlo. Con MySQL questo è fatto aggiungendo il codice : mysql_close ( $ my_connect ) ; >
4
5
?
Informazioni correlate
Programmazione © www.354353.com