You appear to be a bot. Output may be restricted
Description
Output an end tag
Usage
etag( $tag );
Parameters
- $tag
- ( mixed ) required –
Returns
void
Source
File name: oik-bwtrace/libs/bobbfunc.php
Lines:
1 to 4 of 4
function etag( $tag ) { // bw_echo( '</'.$tag.'>'."\n"; bw_echo( '</'.$tag.'>' ); }
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" );