Re: Data Entry for a Newbie

2002-07-26 Thread William Bradley
Thank you for all the replies to my MySQL question above. They have been most helpful. Bill. - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list

RE: Data Entry for a Newbie

2002-07-25 Thread Tam, Michael
MySql Front, http://www.anse.de/mysqlfront/, is a win32 GUI for admin and data entry. Yes, you can use html and some web programming to communicate with MySQL. -Original Message- From: William Bradley [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 8:13 AM To: Mysql Subject:

Re: Data Entry for a Newbie

2002-07-25 Thread Ray
phpMyAdmin if you have a webserver with php you can use. or you can use MyODBC and us MS Access to make a front end for data entry. -- Forwarded Message -- Subject: Data Entry for a Newbie Date: 25 Jul 2002 11:12:35 -0400 From: William Bradley [EMAIL PROTECTED] To: Mysql

RE: Data Entry for a Newbie

2002-07-25 Thread Seth R Payne
I would buy a book called PHP Essentials. www.thickbook.com I used it to learn how to write an html/php interface to my databases and i use it all the time now. It takes a bit of work to get the interfaces built but the book is really easy to follow and understand. seth -Original

Re: Data Entry for a Newbie

2002-07-25 Thread hcir
On 2002-07-25 07:12, William Bradley [EMAIL PROTECTED] wrote: At the moment I have Mysql installed and understand command line entry of data, or entry via a text file. Either way, it is difficult, especially if you have been used to data entry screens. Is there a utility somewhere that would

RE: Data Entry for a Newbie

2002-07-25 Thread Norris, Joseph
Hello! two ways: Fun way: Get Perl and write some cgi using html/javascript front end Another way (maybe not as fun - but gets the job done): Enter data in Excel spreadsheet and export to comma delimited file. Then go and read the docs on mysqlimport command. Cheers! -Original