
June 9th, 2004
02:33 AM
MySQL control panel?
Hi
I'm new to this whole PHP "open-source" thing... as many of you know, I prefer to stay in the relm of .Net (Long Live Bill Gates!!!</sarcasm>)
Anyway.....
one of my clients uses PHP and a MySQL database
Now, whilst I know the basics of PHP, I'm kinda confuzzled about MySQL
I'm used to MDBs... just upload in FTP and write a connection string, and you're done
But with MySQL, you don't really have physical access to the database
....So how do you edit the database properly?
I read *somewhere* that there's some PHP-based application you can get to administer MySQL databases, I checked on MySQL's website, but I couldn't find anything
Yes, I know I could write it myself... but I don't really want to write a load of SQL INSERT statements, blegh
Ciao 
___________________


June 9th, 2004
02:44 AM
Neverside Newbie
Status: Offline!

June 9th, 2004
03:16 AM
if you find phpMyAdmin too daunting, ive created a similar script thats waay easier to use..
___________________
Graphic and Web Design services at flowtone.com

June 9th, 2004
03:50 AM
Thanks, this is just what I was looking for
And just aamoc, why arn't MySQL databases accessable to the user anyway?
....and they say PHP is easier to use! *goes off to code some more .Net (in Satan's presence) accompanied by an evil laugh* muwahahaha ::angry::
___________________


June 9th, 2004
04:31 AM
Neversidian
Status: Offline!
http://www.aesthetic-theory.com/showtut.php?page=tutorials&t=server1
That will help you install PHPMyAdmin in case you come into some problems.
___________________
"Hey, **** YOU!"

June 9th, 2004
08:10 AM
If you know how, I would recommend password-protecting your PHPMyAdmin if not already.

June 9th, 2004
04:17 PM
Neversidian
Status: Offline!
They are accessable to the user... There are lots of actual programs that you can run to access them, or you can use the cmd line to do things to it as well.
___________________
Neverside Development Director
PHP Snippets
BigToach.com - IT WORKS, TOACHY!

June 10th, 2004
09:11 AM
thinking of something witty to put here
Status: Offline!
MySQL databases are accessible. To my knowledge you can edit MySQL databases somewhat in the Windows version of MySQL. As Scott said, there are client-side programs that you can run, but phpMyAdmin works on anything and is very powerful.

June 11th, 2004
12:05 AM
I was referring to the fact that many webhosts running Apache/Linux don't actually allow customers to access the MySQL database via FTP, whereas IIS/Windows hosts do (to M$-SQL and MDB)
___________________


June 11th, 2004
12:54 AM
Neverside Newbie
Status: Offline!
Originally posted by W3bdevil
I was referring to the fact that many webhosts running Apache/Linux don't actually allow customers to access the MySQL database via FTP, whereas IIS/Windows hosts do (to M$-SQL and MDB)
That's because you can't read a MySQL file by itself.
Microsoft databases can be used anywhere (any folder, you just have to point there).
MySQL databases have to be stored in a certain folder in the MySQL directory (usually data) and the database name (depending on the server) may be something like username-databaseName with the .frm .MYD and .MYI files. There would still have to be a program to interpret those files, because you can't edit them with a normal text editor. So being allowed to edit them remotely is better than going through the trouble of downloading them, editing them with a $200+ program, and uploading the updated database.