ball420 Posted June 6, 2007 Share Posted June 6, 2007 what is the best way to connect to a database remotly so that i can create tables and what not. on my local machine i use wamp5, somthing with a gui would be nice. help!!!! Link to comment https://forums.phpfreaks.com/topic/54464-connecting-to-database/ Share on other sites More sharing options...
bubblegum.anarchy Posted June 7, 2007 Share Posted June 7, 2007 SQLyog: http://www.webyog.com/en/ Link to comment https://forums.phpfreaks.com/topic/54464-connecting-to-database/#findComment-269652 Share on other sites More sharing options...
doogles Posted June 7, 2007 Share Posted June 7, 2007 you could go into your MySQL DOS box and simply type in your password then enter the following: use [database name]; then do what you wish. Or if you working with PHP, do something like: $conn=mysql_connect("localhost", "[username]", "[password]"); mysql_select_db("[database name]", $conn); Link to comment https://forums.phpfreaks.com/topic/54464-connecting-to-database/#findComment-269704 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.