>        Could you please advise me on how to export data in
> LINUX/MySQL table
> for web publishing?

If you need the data in a mysql table displayed in an HTML table, a quick
and dirty way to get a static file is to run this from the command line...
#mysql -uroot -p -H -e"SELECT * FROM Employee" Intranet > employees.html

In this instance I am putting Intranet.Employee into an html file named
eployees.  It is just basic html for a table, you'll need to go in and add
stuff like head and body tags.  If you want it to be dynamic you are going
to need to develop something using a scripting language.  PHP and Perl could
both easily accomplish this task, as could a multitude of other languages.



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to