Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MySQL newbie question 1

Status
Not open for further replies.

tmryan

Programmer
Dec 22, 2000
73
US
I'm thinking about getting started with mySQL. I'm getting into WEB development and playing with PHP. Does MySQL come in different flavors? My home PC's are WIN98 & WIN 2000, but my website is hosted on a Linux server. How do I maintain data on a MySQL DB in Windows and then transfer it to a Linux server?

Thanks
Tim Ryan
 
You can install MySQL on Windows ( and it should run almost no different than MySQL on Linux. (See
To transfer your data, learn to use mysqldump ( to dump the structure and contents of your database to a text file. This text file contains all the SQL queries and INSERT statements needed to re-build your database on another MySQL server.

You can also install Apache for windows, to most closely emulate your server environment. Even better, there is a project that allows you to download a program that will install PHP, Apache, and MySQL all at the same time:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top