we have a server running MySQL, but i simply don't know how to use it.
my current project is learning PHP. perhaps my next will be MySQL.
how hard is it to set up a web app to talk to/read the MySQL server (if it's already installed)?
On Thursday, March 13, 2003, at 01:39 PM, Michael Ryan Byrd wrote:
If you expect simultaneous edits, you'll need to consider some sort ofthe company that i work for has need for the equivelant of "an excel file online... that can be edited by multiple users."
concurrent versioning system (CVS) type of provisions, or check out or locking
or merging to ensure users don't write over others' work etc.
What they need is a relational database, like mysql or postgres.i told them what they really need is a small database with a webapp front end that allows them to add to/edit it.
Maybe I'm missing something here, but it seems as if you are going to a lot ofi have a few PHP scripts (that art helped me right... thank you art) that make up a small flat-database... allowing you to add new entries and delete entries. i tried to add a "edit entry" feature by my self, but have yet to be able to get it to work.
effort to replicate (poorly) the functionality of a *real* database. Why?
Reading and writing to flat files is not very fast or efficient you know.
Relational databases, on the other hand, do that sort of data manipulation for
you, and they do it fast and cleanly.
Ok, if you must have your flat files, you could always read the information intowhat i have would almost work for what my company wants, but... they want to be able to sort the information by columns.
an array and use PHP's array sorting functions to do this. ( See
http://www.php.net/manual/en/function.array.php ) But again, I can only hope you
have some compelling reason for avoiding real databases, like SQL allergies or
something.
cheers,
Ryan
____________________ BYU Unix Users Group http://uug.byu.edu/ ___________________________________________________________________ List Info: http://phantom.byu.edu/cgi-bin/mailman/listinfo/uug-list
____________________
BYU Unix Users Group http://uug.byu.edu/ ___________________________________________________________________
List Info: http://phantom.byu.edu/cgi-bin/mailman/listinfo/uug-list
