47 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<HTML>
 | 
						|
<HEAD>
 | 
						|
<TITLE>MySQLMan: Table list</TITLE>
 | 
						|
</HEAD>
 | 
						|
<BODY BGCOLOR="#CCCCCC">
 | 
						|
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
 | 
						|
			<tr><td bgcolor="navy">
 | 
						|
					<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
 | 
						|
                    <b>MySQLMan: Table list</b>
 | 
						|
			</td></tr>
 | 
						|
			<tr><td>
 | 
						|
<%include header.txt%>
 | 
						|
<P>
 | 
						|
<FONT SIZE= "3">
 | 
						|
<UL><%if feedback%>
 | 
						|
	<%include message.txt%>
 | 
						|
	<P>
 | 
						|
	<%endif%>
 | 
						|
	<%if table_tables_cnt%>
 | 
						|
	<TABLE border = 2>
 | 
						|
	<TR><TD ALIGN=center><B>TABLE</B></TD><TD colspan="6" ALIGN=center><B>ACTION</B></TD><TD ALIGN=center><B>RECORDS</B></TD></TR>
 | 
						|
  <%loop table_tables%>
 | 
						|
  <TR><TD><%name%></TD>
 | 
						|
  <TD><A href="<%script_url%>?<%do_param%>=browse;data_source=<%data_source%>;table=<%name%>;page=1;action=browse">Browse</A></TD>
 | 
						|
  <TD><A href="<%script_url%>?<%do_param%>=select;data_source=<%data_source%>;table=<%name%>;page=1;action=select">Select</A></TD>
 | 
						|
  <TD><A href="<%script_url%>?<%do_param%>=property;data_source=<%data_source%>;table=<%name%>">Properties</A></TD>
 | 
						|
  <TD><A href="<%script_url%>?<%do_param%>=insert;data_source=<%data_source%>;table=<%name%>">Insert</A></TD>
 | 
						|
  <TD><A href="<%script_url%>?<%do_param%>=modify;data_source=<%data_source%>;table=<%name%>;action=drop_table">Drop</A></TD>
 | 
						|
  <TD><A href="<%script_url%>?<%do_param%>=modify;data_source=<%data_source%>;table=<%name%>;action=empty_table">Empty</A></TD>
 | 
						|
  <TD align="right"><%count%></TD>
 | 
						|
  </TR>
 | 
						|
  <%endloop%>
 | 
						|
	</TABLE>
 | 
						|
	<%endif%>
 | 
						|
	
 | 
						|
	<%ifnot table_tables%>
 | 
						|
	<TABLE border = 2 CELLPADDING= 10>
 | 
						|
	<TD><B>There are no Tables in the Database</B></TD>
 | 
						|
	</TABLE>
 | 
						|
	<%endif%>
 | 
						|
 | 
						|
</UL>
 | 
						|
</FONT>
 | 
						|
</td></tr></table>
 | 
						|
</BODY>
 | 
						|
</HTML>
 |