Re: [PHP] Query Analyzer For MySQL with PHP?

2001-04-23 Thread Kurth Bemis
At 02:56 PM 4/23/2001, Brandon Orther wrote: teh guys a phpwizzard.net wrote phpmyadmin...its a wonderful db admin tool...and it has a feature like what your describing.check it out...http://www.phpwizzards.net ~kurth Hello, I recently took an ANSI SQL class to better familiarize

Re: [PHP] Query Analyzer For MySQL with PHP?

2001-04-23 Thread Plutarck
If you want to input SQL querries through a text box, you can just build an easy one in PHP. Note: it's extremely unsecure to use for anything more than personal use. Just create an HTML form with a textarea and a submit button. Set the action to the php page and on the PHP page do something

RE: [PHP] Query Analyzer For MySQL with PHP?

2001-04-23 Thread Chris Mulcahy
Brandon: Search www.freshmeat.net for phpmyadmin. It's a great little tool to help you administer MySQL, including executing arbitrary SQL statements. There are several others there as well. Freshmeat has plenty of tools to get you going. hth Chris -Original Message- From: Brandon

Re: [PHP] Query Analyzer For MySQL with PHP?

2001-04-23 Thread Philip Olson
Use the mysql monitor, from shell: mysql -u username -p dbname That'll log you in, now run some queries : mysqlSELECT * FROM tablename; At this point everything is selected and displayed from table tablename. In otherwords, we can run and view SQL queries from this console, much

RE: [PHP] Query Analyzer For MySQL with PHP?

2001-04-23 Thread Renzi, Sebastian
2001 16:47 Para: Brandon Orther CC: PHP User Group Asunto: Re: [PHP] Query Analyzer For MySQL with PHP? Use the mysql monitor, from shell: mysql -u username -p dbname That'll log you in, now run some queries : mysqlSELECT * FROM tablename; At this point