Hey all,
This CF code:
<CFQUERY DATASOURCE="cfunipix" name="gallery">
SELECT * FROM photos
</CFQUERY>
<table width="100%" border="0" cellspacing="2" cellpadding="5">
<table align="center">
<tr>
<CFOUTPUT QUERY="gallery" maxrows="6">
<TD>#photo_name#</TD>
<CFIF gallery.CurrentRow MOD 3 EQ 0>
</tr>
<tr>
</CFIF>
</CFOUTPUT>
</tr>
</table>
Returns this HTML:
<table width="100%" border="0" cellspacing="2" cellpadding="5">
<table align="center">
<tr>
Ê <TD>01.jpg</TD>
Ê <TD>02.jpg</TD>
Ê <TD>03.jpg</TD>
</tr>
<tr>
Ê <TD>04.jpg</TD>
Ê <TD>05.jpg</TD>
Ê <TD>06.jpg</TD>
</tr>
<tr>
</tr>
</table>
I'm just truncating the results with maxrows so you don't have to read all the HTML.
What is with these? Ê, Ê, Ê?
Thanks in advance...
-b-
This CF code:
<CFQUERY DATASOURCE="cfunipix" name="gallery">
SELECT * FROM photos
</CFQUERY>
<table width="100%" border="0" cellspacing="2" cellpadding="5">
<table align="center">
<tr>
<CFOUTPUT QUERY="gallery" maxrows="6">
<TD>#photo_name#</TD>
<CFIF gallery.CurrentRow MOD 3 EQ 0>
</tr>
<tr>
</CFIF>
</CFOUTPUT>
</tr>
</table>
Returns this HTML:
<table width="100%" border="0" cellspacing="2" cellpadding="5">
<table align="center">
<tr>
Ê <TD>01.jpg</TD>
Ê <TD>02.jpg</TD>
Ê <TD>03.jpg</TD>
</tr>
<tr>
Ê <TD>04.jpg</TD>
Ê <TD>05.jpg</TD>
Ê <TD>06.jpg</TD>
</tr>
<tr>
</tr>
</table>
I'm just truncating the results with maxrows so you don't have to read all the HTML.
What is with these? Ê, Ê, Ê?
Thanks in advance...
-b-