Hello
I have just learning Coldfusion ! So please , could anyone help me in this problem :
I want to know , how to seperate each records with a space when displaying the query !
This my code :
<cfquery name="getEntrees" datasource="logement">
SELECT TOP 5 *
FROM Entrees
</cfquery>
Coldfusion
<cfoutput query = "getEntrees" >
#getEntrees.Sommaire#
</cfoutput>
What it display :
Enregistrement1Enregistrement2Enregistrement3Enregistrement4Enregistrement5
What i want :
- Enregistrement1
- Enregistrement2
- Enregistrement3
- Enregistrement4
- Enregistrement5
Sorry for my poor english , Im origine from France , i have just 17 year and i speak just a little bit English .
Cheers and thanks in advance for your help !