Re: How to start MySQL
Posted by: Peter Brawley
Date: March 26, 2016 01:11PM

Queries sent to MySQL by PHP depend on a database structure---tables, indexes, perhaps stored routines---created before the PHP webapp runs.

To work with this DB, you need the same version of MySQL installed on your local machine, plus a local web server eg Apache, plus PHP. If you're unfamiliar with MySQL, you'll need to work through the initial chapters of the manual. Ditto for PHP.

Then you need to use phpMyAdmin or another such utility to export the web DB to your local machine, and a FTP utility to export the PHP scripts to your local machine, so that you have a working copy of the website. Now use a local copy of phpMyAdmin, and or MySQL Workbench, to study the DB. And make backups.

Then you need to analyse the DB and how the PHP scripts use it, and document that exhaustively.

Into that document, you plug the change requirements, then you analyse hwat has to be changed in the database structure, and finally in the code.

Then you code.

You've a long learning curve ahead. You may want to hire a PHP-MySQL consultant to get you started.



Edited 2 time(s). Last edit at 03/26/2016 02:08PM by Peter Brawley.

Options: ReplyQuote


Subject
Views
Written By
Posted
1028
March 26, 2016 04:16AM
Re: How to start MySQL
720
March 26, 2016 01:11PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.