Update index.cfm

This commit is contained in:
XaHY 2024-10-11 17:11:21 +03:00 committed by GitHub
parent dec1f1d81e
commit a0d542a760
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,26 +9,6 @@
<body>
<h2>Hello, Lucee! Today's date is #dateFormat(now(), 'yyyy-mm-dd')#.</h2>
<h3>Users List:</h3>
<!--
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Email</th>
</tr>
<cfquery name="getUsers" datasource="pg">
SELECT id, name, email FROM users
</cfquery>
<cfloop query="getUsers">
<tr>
<td>#getUsers.id#</td>
<td>#getUsers.name#</td>
<td>#getUsers.email#</td>
</tr>
</cfloop>
</table>
-->
</body>
</html>
</cfoutput>