Guest User

Untitled

a guest
Dec 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. <?php echo $this->Form->create('Comment', array('controller'=>'Comments', 'action'=>'add'));?>
  2.     <fieldset>
  3.         <?php
  4.         echo $this->Form->input('id_post', array('type'=>'hidden','value'=> $post['Post']['id']));
  5.         echo $this->Form->input('username');
  6.         echo $this->Tinymce->input('Comment.body', array(
  7.             'label' => 'Content'
  8.             ),array(
  9.             'language'=>'en'
  10.             ),
  11.             'bbcode'
  12.             );
  13.  
  14.             ?>
  15.         </fieldset>
  16.         <?php echo $this->Form->end(__('Submit'));?>
  17.     </div>
Add Comment
Please, Sign In to add comment