First pass at adding key files
This commit is contained in:
@ -0,0 +1,52 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>MySQLMan: Create New Table</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: Create New Table</b>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<%include header.txt%>
|
||||
|
||||
<FORM METHOD="POST" ACTION="<%script_url%>">
|
||||
<INPUT TYPE="hidden" name="<%do_param%>" VALUE=<%do%>>
|
||||
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
|
||||
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
|
||||
<INPUT TYPE="hidden" NAME=num_of_fields VALUE="<%num_of_fields%>">
|
||||
<INPUT TYPE="hidden" NAME=action VALUE="add_col">
|
||||
<INPUT TYPE="hidden" NAME=position VALUE="<%position%>">
|
||||
|
||||
|
||||
<table border="2" bgcolor="#FFFFCC">
|
||||
|
||||
<tr>
|
||||
<th>Field</th>
|
||||
<th>Type</th>
|
||||
<th>Length/Set</th>
|
||||
<th>Attributes</th>
|
||||
<th>Null</th>
|
||||
<th>Default</th>
|
||||
<th>Extra</th>
|
||||
<th>Primary</th>
|
||||
<th>Index</th>
|
||||
<th>Unique</th>
|
||||
</tr>
|
||||
|
||||
<%columns%>
|
||||
|
||||
</table><P>
|
||||
<%if do eq create_table%>
|
||||
<INPUT TYPE="submit" value=" Create Table ">
|
||||
<%endif%>
|
||||
|
||||
<%if do eq alter_table%>
|
||||
<INPUT TYPE="submit" value=" Add Column ">
|
||||
<%endif%>
|
||||
|
||||
</FORM>
|
||||
</td></tr></table>
|
||||
</BODY></HTML>
|
Reference in New Issue
Block a user