| Server IP : 104.21.21.239 / 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 : |
<cfquery name="getSurveyResults" datasource="#ds#">
SELECT * FROM survey06282023
</cfquery>
<!DOCTYPE html>
<html>
<head>
<title>Survey Results</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #ccc;
padding: 8px;
}
</style>
</head>
<body>
<h1>Survey Results</h1>
<cfif getSurveyResults.recordCount GT 0>
<table>
<tr>
<th>ID</th>
<th>Rating</th>
<th>Feedback</th>
<th>Recommendation</th>
<th>Liked Experience</th>
<th>Venue Recommendations</th>
<th>Name</th>
<th>Title</th>
<th>Email</th>
<th>Hotel</th>
</tr>
<cfoutput query="getSurveyResults">
<tr>
<td>#id#</td>
<td>#rating#</td>
<td>#feedback#</td>
<td>#comfortable_recommendation#</td>
<td>#liked_experience#</td>
<td>#venue_recommendations#</td>
<td>#name#</td>
<td>#title#</td>
<td>#email#</td>
<td>#hotel#</td>
</tr>
</cfoutput>
</table>
<cfelse>
<p>No survey results found.</p>
</cfif>
</body>
</html>