Neatware  Header

Table

__noop method do nothing.

wmlHeader();
_wml();
  _card();
    _do( "type='accept' label=''" );
      __noop();
    do_();

show an internal image 'sun'.

    _p( "align='center'" );
      quote( "Toronto" );
      __img( "localsrc='sun' alt='sun shine' src=''" );
    p_();

'columnes' is a required attribute of _table. _tr defines a row and _td defines an item of a table. quote [_b_ day] display a blod day.

    _p( "mode='nowrap'" );
      _table( "columns='2'" );
        _tr();
          _td(); quote( "High" ); td_();
          _td(); quote( "Low" ); td_();
        tr_();
        _tr();
          _td(); quote( "70" ); td_();
          _td(); quote( "30" ); td_();
        tr_();
        _tr();
          _td(); quote( "day" ); td_();
          _td(); quote( "shine" ); td_();
        tr_();
        _tr();
          _td(); quote( "night" ); td_();
          _td(); quote( "cloud" ); td_();
        tr_();
      table_();
    p_();
  card_();
wml_();
Select < Previous Next > Style