so i'd say that using TOAD more secure than just using myphpadmin tought, cause TOAD using server-client connection from our PC...
but if i want to use TOAD how to connect to mysql server that been put on linux thought?
so i'd say that using TOAD more secure than just using myphpadmin tought, cause TOAD using server-client connection from our PC...
No, not really, as it involves allowing remote connections, which is not really secured.
Best could be phpMyAdmin with security on the directory.
Something like a .htaccess containing :
AuthName "PhpMyAdmin" AuthType Basic AuthUserFile ".htpasswd" require valid-user
AuithUserFile should be changed to secure path and .htpasswd correcly generated (search in the web for "how to generate .htpasswd")
but if i want to use TOAD how to connect to mysql server that been put on linux thought?
You need to allow remote access on MySql server. This is not very easy, nor secure. You'll find some tutorials on the web ( http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html)
phpMyAdmin is not a bad alternative 😉