| Server IP : 172.67.201.108 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home2/cgny/nympadmin/ |
Upload File : |
<cfcontent type="text/html;charset=iso-8859-1">
<cfprocessingDirective pageencoding="iso-8859-1">
<cfset setEncoding("Form", "ISO-8859-15")>
<cfinclude template="header.cfm">
<div id="content">
<div id="content-header">
</div>
<div class="container-fluid" style="margin-left:200px;">
<cfif #getuser.accesslevel# gte 100>
<cfquery name="query3" datasource="#ds#">
SELECT * from columnmaster
where mag = 5
order by authorname
</cfquery>
<body><font face=arial size=-1><Center>
<Table bgcolor=efefef cellpadding="4" cellspacing="4"><tr><TD style="padding:4px;"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">
<strong>MERGE AUTHORS:</strong>
<FORM ACTION = "mergeauthors.cfm" METHOD = "post" >
Enter ID # to Remove: <input name="remove" size="4"><br>
Enter ID # to Merge Into: <input name="mergeinto" size="4"><br>
<Center><table><Tr><TD style="padding:4px;"></td></Tr></table>
<INPUT TYPE = "submit" VALUE = "Merge">
</Center>
</FORM>
</Td></tr></Table>
</font>
<FORM ACTION = "ordercol2.cfm" METHOD = "post" onSubmit = "return CheckValues()" NAME = "MultiForm">
<!--- Pass the number of records. --->
<CFOUTPUT>
<INPUT TYPE = "hidden" NAME = "NumRecords" VALUE = "#query3.RecordCount#">
</CFOUTPUT>
<center>
<TABLE width="700" BORDER = "1" cellpadding="3">
<TD BGCOLOR = "#c0c0c0"><B>ID</B></TD>
<TD BGCOLOR = "#c0c0c0"><B>Name</B></TD>
<TD BGCOLOR = "#c0c0c0"><B>Total Posts</B></TD>
<TD BGCOLOR = "#c0c0c0"><B>Last Post</B></TD>
</TR>
<!--- Loop through the query and output the form fields. --->
<!--- Each form field will end in the row number of the record. --->
<CFOUTPUT QUERY = "query3">
<cfquery name="getcount" dataSource="#ds#">
select count(id)
as counter from columntable
where columnnum = #id#
</cfquery>
<cfquery name="getcounter" dataSource="#ds#">
select dateposted
from columntable
where columnnum = #id# order by dateposted desc
limit 0,1
</cfquery>
<INPUT TYPE = "hidden" NAME = "ID#CurrentRow#" VALUE = "#ID#">
<TR bgcolor="#IIf(CurrentRow Mod 2, DE('ffffff'), DE('ffffcf'))#">
<TD style="padding:4px;">
<font face=verdana size=-1>
<strong> <center> #id#</strong></TD>
<TD style="padding:4px;"> <font face=verdana size=-1><a href="editcolumn.cfm?id=#id#">#authorname#</a></TD>
<TD style="padding:4px;"> <font face=verdana size=-1>
#getcount.counter#
</TD>
<TD style="padding:4px;"> <font face=verdana size=-1>
#dateformat(getcounter.dateposted,'m/d/yyyy')#
</TD>
</TR>
</CFOUTPUT>
</TABLE><P>
<INPUT TYPE = "submit" VALUE = "Update">
</FORM>
</BODY></HTML>
</cfif>
</font>
</div>
<!--Footer-part-->
<br><br><br><br>
<cfinclude template="footer.cfm">