You appear to be a bot. Output may be restricted
Description
Output an end tag
Usage
etag( $tag );
Parameters
- $tag
- ( mixed ) required –
Returns
voidSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 4 of 4
function etag( $tag ) { // bw_echo( '</'.$tag.'>'."\n"; bw_echo( '</'.$tag.'>' ); }View on GitHub View on Trac
Additional Notes:
The etag() function is paired with the stag() function. For each stag() there should be a corresponding etag()
stag( "table" );
// table code goes here
etag( "table" );