/translate/add.php

https://bitbucket.org/yterajima/seezoo-translate · PHP · 12 lines · 12 code · 0 blank · 0 comment · 0 complexity · e865737e26b9b86ae2d104548db3ec2f MD5 · raw file

  1. <div class="sz_block_separator" style="width:480px;">
  2. 翻訳言語を選択:
  3. <?php echo form_dropdown('lang', $controller->lang_list());?><br />
  4. 翻訳したい文章を入力してください
  5. <?php echo form_textarea(array(
  6. 'name' => 'body',
  7. 'cols' => 1,
  8. 'rows' => 1,
  9. 'style' => 'width:480px;height:370px'
  10. ));
  11. ?>
  12. </div>