You appear to be a bot. Output may be restricted
Description
Create a simple table row
Usage
tablerow( $td1, $td2 );
Parameters
- $td1
- ( string ) required – contents of first cell
- $td2
- ( string ) required – contents of second cell
Returns
voidTO DO
Does this get used at all?Source
File name: oik-bwtrace/libs/bobbforms.phpLines:
1 to 7 of 7
function tablerow( $td1, $td2 ) { echo '<tr>'; echo '<td>'.$td1.'</td>'; echo '<td>'.$td2.'</td>'; echo '</tr>'; return 0; }View on GitHub View on Trac