Lally Posted January 28, 2015 Share Posted January 28, 2015 Am bagat eu acol odar vad ca nu mere am bagat baza de date in phpMyAdmin am creat baza am bagat toate de mai jos dar vad ca nu merge imi puteti sa imi spuneti mai exact ce puc si unde. P.S daca vrei sa imi zici ca nu stiu nimic etc.. nu mai posta pentru ca am incercat deci nu poti zice ca nu stiu dar nu merge. local hostname = get( "hostname" ) or "" local username = get( "username" ) or "" local password = get( "password" ) or "" local database = get( "database" ) or "" local port = tonumber( get( "port" ) ) or 3306 Link to comment
crismar Posted January 28, 2015 Share Posted January 28, 2015 Si detaliile de conectare?... Cine crezi ca le pune? Cand pornesti modulul MySQL iti arata exact eroarea, daca exista. Link to comment
Skinner Posted December 21, 2015 Share Posted December 21, 2015 de exemplu contul tău de Mysql este Alex şi parola 123456, si baza de date se cheamă server atunci: local hostname = get( "hostname" ) or "localhost" local username = get( "username" ) or "Alex" local password = get( "password" ) or "123456" local database = get( "database" ) or "server" local port = tonumber( get( "port" ) ) or 3306 sau în caz că nu ai cont, numești fișierul .sql "server" apoi: local hostname = get( "hostname" ) or "localhost" local username = get( "username" ) or "root" local password = get( "password" ) or "" local database = get( "database" ) or "server" local port = tonumber( get( "port" ) ) or 3306 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now