=== Plugin Name ===
Contributors: Richard Hoermann wp.vom-kuhberg.de
Tags: table sql quer 

== Description ==
This plugins allows the creation of tables by a SQL-QUERY

== Installation ==
1. Upload tabsql directory to the '/wp-content/plugins/' directory
2. Activate the plugin through the 'Plugins' menu in WordPress

== Atts  Default         Description ==
query    "SHOW TABLES;"  The SQL-Query 
serv     "localhost"     the Address of the SQL-Server
user     "root"          SQL Username       
pasw     ""              SQL_Password
bank     "bank_wp_myweb" The Bank which should be used
csid     "tabsql"        CSS-Id for the Design of the Table
coln     "false"         No Column Header
rown     "false"         Show additional Column for Counting the Result-Rows
showq    "false"         Show the Query as Text before the table
fav      ""              Each row that contains this text will be designed with a Favorite Design

== CSS  ==
add your special CSS like this:
#tabsql .head 	{ background:blue;}
#tabsql .even 	{ background:#606060;}
#tabsql .odd  	{ background:#404040;}
#tabsql .fav  	{ background:magenta; }
#tabsql .rown 	{ font-style:italic;}
#tabsql tr:hover{ background:#808080;}
#tabsql .query	{ font-family:Consolas; background:orange;}
#tabsql::after  { content: "\A";}


== Usage  ==
Add a Shortcode to your page like
[tab_sql query="SELECT * FROM tab_forscher" ]
