TFOOT

Creating the table's footer.

Example

TFOOT

	TROW

		TCELL

			PRINT "Table footer cell 1"

		END TCELL

		TCELL

			PRINT "Table footer cell 2"

		END TCELL

	END TROW

END TFOOT

Output

<tfoot>

	<tr>

		<td>

			<span>Table footer cell 1</span>

		</td>

		<td>

			<span>Table footer cell 2</span>

		</td>

	</tr>

</tfoot>

See also