| 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/public_html/newadmin/ |
Upload File : |
<Cfif parameterexists(url.listid)>
<cfquery name="getmembers" datasource="#ds#">
select phplistdbnew.phplist_user_user.email
from phplistdbnew.phplist_user_user
inner join phplistdbnew.phplist_listuser on phplistdbnew.phplist_listuser.userid = phplistdbnew.phplist_user_user.id
where phplistdbnew.phplist_user_user.blacklisted = 0
and
phplistdbnew.phplist_listuser.listid = #url.listid#
group by email
</cfquery>
<Cfsavecontent variable="myExcelFile">
email
<cfoutput query="getmembers">
#email#
</cfoutput>
</table>
</CFSAVECONTENT>
<cfheader name="Content-Disposition" value="inline; filename=phpcsv/#url.listid#.csv">
<cfcontent type="application/vnd.ms-excel"><cfoutput>#myExcelFile#</cfoutput>
<Cfabort>
<cfsavecontent variable="saveme"><cfcontent type="application/vnd.ms-excel">email<cfoutput query="Getmembers">#email#</cfoutput></cfsavecontent>
<cffile action = "WRITE" file="/home/home2/cgny/public_html/newadmin/phpcsv/#url.listid#.csv" output="#saveme#">
<cflocation url = "phpcsv/#url.listid#.csv">
<cfelse>
<cfquery name="geter" datasource="#ds#">
SELECT * FROM phplistdbnew.phplist_list
order by category, name
</cfquery>
<table border="1" cellpadding="4" cellspacing="0">
<cfoutput query="geter">
<tr>
<td>
<a href="phpexport.cfm?listid=#id#">view</a>
</td>
<td>
#name#
</td>
<Td>
#category#
</Td>
</tr>
</cfoutput>
</table>
</cfif>